AddPoints() public method

Adds the series in form of a matrix.
public AddPoints ( MatrixValue M ) : void
M MatrixValue The matrix which contains the values.
return void
Beispiel #1
0
        public ContourPlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z)
        {
            var plot = new ContourPlotValue();

            plot.AddPoints(X, Y, Z);
            return(plot);
        }
Beispiel #2
0
        public ContourPlotValue Function(MatrixValue Z, MatrixValue v)
        {
            var plot = new ContourPlotValue();

            plot.AddPoints(Z);
            plot.SetLevels(v);
            return(plot);
        }
Beispiel #3
0
        public ContourPlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue Z, ScalarValue n)
        {
            var nn   = n.GetIntegerOrThrowException("n", Name);
            var plot = new ContourPlotValue();

            plot.AddPoints(X, Y, Z);
            plot.SetLevels(nn);
            return(plot);
        }