Calculates the double integration of a multivariable function.
The function
The lower x-bound
The upper x-bound
The lower y-bound
The upper y-bound
const f = Chalkboard.real.define((x, y) => x + y);const integral = Chalkboard.calc.fxydxdy(f, 0, 1, 0, 1); // Returns approximately 1 Copy
const f = Chalkboard.real.define((x, y) => x + y);const integral = Chalkboard.calc.fxydxdy(f, 0, 1, 0, 1); // Returns approximately 1
Calculates the double integration of a multivariable function.