(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit)
| 231 | } |
| 232 | |
| 233 | public static double intg(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit) throws MathParserException { |
| 234 | return integral(parser, variableName, exp, lowerLimit, upperLimit, 20); |
| 235 | } |
| 236 | |
| 237 | public static double integral(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit) throws MathParserException { |
| 238 | return integral(parser, variableName, exp, lowerLimit, upperLimit, 20); |