protected override void Create()
 {
     // create variable objects and function objects
     average_value    = new AverageFC(this);
     first_difference = new FirstDifference(this);
 }
Example #2
0
 protected override void Create()
 {
     // create variable objects, function objects, plot objects etc.
     plot1      = AddPlot(new PlotAttributes("", EPlotShapes.Line, Color.Red));
     difference = new Function.FirstDifference(this);
 }