Calculates the Fourier transform of a function at a value within an interval.
The function
The value
Optional
The lower bound
The upper bound
The number of steps for numerical integration
const pulse = Chalkboard.real.define((x) => Chalkboard.real.rect(x));const coefficient = Chalkboard.calc.Fourier(pulse, 1, -1, 1); // Returns a Fourier coefficient Copy
const pulse = Chalkboard.real.define((x) => Chalkboard.real.rect(x));const coefficient = Chalkboard.calc.Fourier(pulse, 1, -1, 1); // Returns a Fourier coefficient
Calculates the Fourier transform of a function at a value within an interval.