()
| 123 | } |
| 124 | |
| 125 | String getEquation() { |
| 126 | GenericDialog gd = new GenericDialog("Formula"); |
| 127 | gd.addStringField("Formula:", equation, 38); |
| 128 | gd.showDialog(); |
| 129 | if (gd.wasCanceled()) |
| 130 | return null; |
| 131 | equation = gd.getNextString(); |
| 132 | return equation; |
| 133 | } |
| 134 | |
| 135 | public static void plot(CurveFitter cf) { |
| 136 | plot(cf, false); |
no test coverage detected