Calculates the second-order complex derivative of a complex function at a complex number.
The function
The complex number
const square = Chalkboard.comp.define((z) => Chalkboard.comp.sq(z));const derivative = Chalkboard.calc.d2fdz2(square, Chalkboard.comp.init(1, 1)); // Returns the second Wirtinger derivatives Copy
const square = Chalkboard.comp.define((z) => Chalkboard.comp.sq(z));const derivative = Chalkboard.calc.d2fdz2(square, Chalkboard.comp.init(1, 1)); // Returns the second Wirtinger derivatives
Calculates the second-order complex derivative of a complex function at a complex number.