Example #1
0
        public ErrorPlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue E)
        {
            var plot = new ErrorPlotValue();

            plot.AddPoints(X, Y, E);
            return(plot);
        }
Example #2
0
        public SumericsErrorPlot(ErrorPlotValue plot) :
            base(plot)
        {
            var model = _model.Model;

            _plot = plot;
            model.Axes.Add(Axis(_plot.IsLogX, AxisPosition.Bottom));
            model.Axes.Add(Axis(_plot.IsLogY, AxisPosition.Left));
            UpdateSeries();
            UpdateProperties();
        }
Example #3
0
 public ErrorPlotValue Function(MatrixValue X, MatrixValue Y, MatrixValue E)
 {
     var plot = new ErrorPlotValue();
     plot.AddPoints(X, Y, E);
     return plot;
 }