Calculates the complex integration of a complex function composed with a parametric curve.
The complex function
The parametric curve
The lower bound
The upper bound
const constant = Chalkboard.comp.define((a, b) => 1, (a, b) => 0);const segment = Chalkboard.real.define((t) => t, (t) => 0);const integral = Chalkboard.calc.fzdz(constant, segment, 0, 1); // Returns approximately 1 + 0i Copy
const constant = Chalkboard.comp.define((a, b) => 1, (a, b) => 0);const segment = Chalkboard.real.define((t) => t, (t) => 0);const integral = Chalkboard.calc.fzdz(constant, segment, 0, 1); // Returns approximately 1 + 0i
Calculates the complex integration of a complex function composed with a parametric curve.