Calculates the autocorrelation of a function at a value.
The function
The value
const f = Chalkboard.real.define((x) => Math.exp(-x * x));const value = Chalkboard.calc.autocorrelation(f, 1); // Returns the function's autocorrelation at 1 Copy
const f = Chalkboard.real.define((x) => Math.exp(-x * x));const value = Chalkboard.calc.autocorrelation(f, 1); // Returns the function's autocorrelation at 1
Calculates the autocorrelation of a function at a value.