NetTest.callMatLab C# (CSharp) Méthode

callMatLab() public méthode

public callMatLab ( ) : void
Résultat 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);
    }