MCPcopy Create free account
hub / github.com/Aghajari/MathParser / intg

Method intg

MathParser/src/com/aghajari/math/Functions.java:233–235  ·  view source on GitHub ↗
(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls 1

integralMethod · 0.95

Tested by

no test coverage detected