AddPoints() 공개 메소드

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

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

            plot.AddPoints(Z);
            plot.SetLevels(v);
            return(plot);
        }
예제 #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);
        }