(MathParser parser, String variableName, String exp, double from, double to)
| 161 | } |
| 162 | |
| 163 | public static double sigma(MathParser parser, String variableName, String exp, double from, double to) throws MathParserException { |
| 164 | return sigma(parser, variableName, exp, from, to, 1.0); |
| 165 | } |
| 166 | |
| 167 | public static double sigma(MathParser parser, String variableName, String exp, double from, double to, double step) throws MathParserException { |
| 168 | if (!Utils.isIdentifier(variableName)) |
nothing calls this directly
no test coverage detected