如何在ILNumerics中反转轴

时间:2014-07-01 05:01:41

标签: graph plot reverse figure ilnumerics

我想在ILLinePlot中从上到下反转Y轴(从下降变为上升)。我的结果是这样的: enter image description here 这是代码:

            scene.Add(new ILPlotCube {
              new ILLinePlot(ILMath.tosingle(ZDistance["1,0;:"]),
                             markerStyle: MarkerStyle.Dot)
            });

如何扭转Y轴变得像这个数字? enter image description here

1 个答案:

答案 0 :(得分:0)

将绘图立方体绕X轴旋转180°:

ilPanel1.Scene.Add(new ILPlotCube {
    Children = {
        new ILLinePlot(ILSpecialData.sincos1Df(200,1)[":;0"].T)
    },
    Rotation = Matrix4.Rotation(new Vector3(1,0,0), ILMath.pif)
}); 

ILNumerics line plot with reversed Y axis

您可能需要进一步配置绘图轴。