2

ILSurface でサーフェスをプロットすることに行き詰まっています。シナリオは次のとおりです。

不規則なグリッドをプロットする:

float[] x = new float[sizeX]; // filled with timestamps

float[] y = new float[sizeY]; // filled with values

float[,] z = new float[sizeX, sizeY]; // filled with values mapped by [x,y]

ILInArray<float> inX = ILMath.array(x);
ILInArray<float> inY = ILMath.array(y);
ILInArray<float> inZ = ILMath.meshgrid(inX * inY, inX, inY);

// how do i fill the inZ with z[,]?

ILRetArray<float> outMesh = ILMath.meshgrid(inX, inY, inZ, null, null);

plotCube.Add(new ILSurface(outMesh, null, null, null, null));

// plotCube already attached to the scene, and the scene with the ILPanel

ilPanel1.Refresh(); 

これを配列にマップして、にプロットできるようにしますILSurface

ILMath.meshgrid私はいくつかを試してみましたILInArray<double> ZXYArrayが、成功しませんでした。

私がはっきりしていることを願っています。どんな助けでも大歓迎です。

ありがとう。

4

1 に答える 1

1

ILNumerics を使用して 3D サーフェスをプロットし、カスタム X および Y 範囲を提供する簡単な例を次に示します。ILNumerics を使用した Windows.Forms アプリケーションの通常のセットアップが必要です。

private void ilPanel1_Load(object sender, EventArgs e) {
    // define X and Y range
    ILArray<float> X = ILMath.vec<float>(-10.0, 0.1, 10.0);
    ILArray<float> Y = ILMath.vec<float>(-6.0, 0.1, 6.0);

    // compute X and Y coordinates for every grid point
    ILArray<float> YMat = 1; // provide YMat as output to meshgrid
    ILArray<float> XMat = ILMath.meshgrid(X, Y, YMat); // only need mesh for 2D function here

    // preallocate data array for ILSurface: X by Y by 3
    // Note the order: 3 matrix slices of X by Y each, for Z,X,Y coordinates of every grid point
    ILArray<float> A = ILMath.zeros<float>(Y.Length, X.Length, 3); 

    // fill in Z values (replace this with your own function / data!!)
    A[":;:;0"] = ILMath.sin(XMat) * ILMath.sin(YMat) * ILMath.exp(-ILMath.abs(XMat * YMat) / 5);
    A[":;:;1"] = XMat; // X coordinates for every grid point
    A[":;:;2"] = YMat; // Y coordinates for every grid point

    // setup the scene + plot cube + surface 
    ilPanel1.Scene = new ILScene() {
        new ILPlotCube(twoDMode: false) {
            new ILSurface(A) {
                UseLighting = true, 
                Children = { new ILColorbar() }
            }
        }
    };
}

次の結果が生成されます。

ILNumerics 表面プロット

これはインタラクティブ Web コンポーネントと同じ例です。

格子点座標が定義される順序に注意してください。ここのドキュメントを参照してください: http://ilnumerics.net/surface-plots.html

于 2013-11-04T20:23:12.117 に答える