MATLABfromCSharp.MatlabAccess.plotMatlabVariables C# (CSharp) Method

plotMatlabVariables() public static method

Plots data the time vs. the unique variable name. Example of calling matlab methods from C#.
public static plotMatlabVariables ( string varName ) : void
varName string unique variable name
return void
        public static void plotMatlabVariables(string varName)
        {
            matlab.Execute("plot(" + varName + "Time" + "," + varName + ");");
        }