Пример #1
0
 public static Graph IterateMathFunction(MathFunction func, double start, double end, double step)
 {
     Graph gr = new Graph();
     for (double x = start; x < end; x += step)
         gr.AddPoint(x, func(x));
     return gr;
 }