Calculates the convolution of two functions at a value.
The first function
The second function
The value
const f = Chalkboard.real.define((x) => Math.exp(-x * x));const value = Chalkboard.calc.convolution(f, f, 0); // Convolves a Gaussian with itself Copy
const f = Chalkboard.real.define((x) => Math.exp(-x * x));const value = Chalkboard.calc.convolution(f, f, 0); // Convolves a Gaussian with itself
Calculates the convolution of two functions at a value.