Calculates the first-order multivariable chained derivative of a multivariable function composed with a parametric curve at a value.
The multivariable function
The parametric curve function
The value
const field = Chalkboard.real.define((x, y) => x + y);const circle = Chalkboard.real.define((t) => Math.cos(t), (t) => Math.sin(t));const rate = Chalkboard.calc.dfrdt(field, circle, 0); // Returns approximately 1 Copy
const field = Chalkboard.real.define((x, y) => x + y);const circle = Chalkboard.real.define((t) => Math.cos(t), (t) => Math.sin(t));const rate = Chalkboard.calc.dfrdt(field, circle, 0); // Returns approximately 1
Calculates the first-order multivariable chained derivative of a multivariable function composed with a parametric curve at a value.