NetTest.callMatLab C# (CSharp) 메소드

callMatLab() 공개 메소드

public callMatLab ( ) : void
리턴 void
    void callMatLab()
    {
        MatLabInterface matlab = gameObject.AddComponent( typeof(MatLabInterface)) as MatLabInterface;
        double[] xRange = {-2, .2, 2};
        double[] yRange = {-2, .2, 2};
        matlab.formulaToMeshgrid("Z = Y.^2 + X.^2", xRange, yRange);
    }