Calculates the antiderivative (or integral) of a 2D scalar or parametric function within an interval.
The function
The lower bound
The upper bound
const square = Chalkboard.real.define((x) => x * x);const integral = Chalkboard.calc.fxdx(square, 0, 1); // Returns approximately 1/3 Copy
const square = Chalkboard.real.define((x) => x * x);const integral = Chalkboard.calc.fxdx(square, 0, 1); // Returns approximately 1/3
Calculates the antiderivative (or integral) of a 2D scalar or parametric function within an interval.