public Plot2DValue Function(MatrixValue m, MatrixValue n) { var plot = new Plot2DValue(); plot.AddPoints(m, n); plot.IsLogX = true; return plot; }
public Plot2DValue Function(MatrixValue m, MatrixValue n) { var plot = new Plot2DValue(); plot.AddPoints(m, n); plot.IsLogY = true; return(plot); }
public Sumerics2DPlot(Plot2DValue 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(); }