AddPoints() public method

Adds points given by a matrix. Vector ? x Values will be generated Matrix ? Investigates which dimension is bigger and takes the larger one as values, the lighter one as series. In a matrix the first series is always excluded and represents the x values.
public AddPoints ( MatrixValue m ) : void
m MatrixValue The matrix with the (multiple) series.
return void
コード例 #1
0
ファイル: PolarFunction.cs プロジェクト: bluntwcrackrap/YAMP
        public PolarPlotValue Function(MatrixValue m, MatrixValue n)
        {
            var plot = new PolarPlotValue();

            plot.AddPoints(m, n);
            return(plot);
        }