YAMP.ErrorbarFunction.Function C# (CSharp) Method

Function() private method

private Function ( MatrixValue Y, MatrixValue E ) : ErrorPlotValue
Y MatrixValue
E MatrixValue
return ErrorPlotValue
        public ErrorPlotValue Function(MatrixValue Y, MatrixValue E)
        {
            var plot = new ErrorPlotValue();
            plot.AddPoints(Y, E);
            return plot;
        }

Same methods

ErrorbarFunction::Function ( MatrixValue X, MatrixValue Y, MatrixValue E ) : ErrorPlotValue