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

Method integral

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

Source from the content-addressed store, hash-verified

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);
239 }
240
241 public static double integral(MathParser parser, String variableName, String exp, double lowerLimit, double upperLimit, double glPoints) throws MathParserException {
242 if (!Utils.isIdentifier(variableName))

Callers 1

intgMethod · 0.95

Calls 7

isIdentifierMethod · 0.95
setRoundEnabledMethod · 0.95
addVariableMethod · 0.95
getVariableMethod · 0.95
gaussQuadMethod · 0.95
getIntegralSumMethod · 0.95
cloneMethod · 0.80

Tested by

no test coverage detected