public SurfacePlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z) { var splot = new SurfacePlotValue(); splot.IsSurf = true; splot.IsMesh = false; splot.AddPoints(X, Y, Z); return splot; }
public SurfacePlotValue Function(MatrixValue Z) { var splot = new SurfacePlotValue(); splot.AddPoints(Z); splot.IsMesh = true; splot.IsSurf = false; return(splot); }