Esempio n. 1
0
 public void Update(String title, Matrix<double> plotdata, List<string> legend, double timestep, int[] markers)
 {
     p = (Presenter)this.DataContext;
     p.Update(title, plotdata, legend, timestep, markers);
 }
Esempio n. 2
0
 public PlotWindow(String title, Matrix<double> plotdata, List<string> legend, double timestep, int[] markers)
 {
     InitializeComponent();
     p = (Presenter)this.DataContext;
     p.Update(title, plotdata, legend, timestep, markers);
 }