Calculates the Laplace transform of a function at a value.
The function
The value
const exponential = Chalkboard.real.define((t) => Math.exp(-2 * t));const value = Chalkboard.calc.Laplace(exponential, 3); // Returns approximately 1/5 Copy
const exponential = Chalkboard.real.define((t) => Math.exp(-2 * t));const value = Chalkboard.calc.Laplace(exponential, 3); // Returns approximately 1/5
Calculates the Laplace transform of a function at a value.