Skip to Content

fft_op

View the code on GitHub

Structs

Functions

fft

fft(x: Array, dim: Int = -1, norm: String = String("backward")) -> Array
Compute the n-dimensional FFT.
Args
  • x: Array The input array.

  • dim: Int (default: -1) The dimension along which to compute the FFT.

  • norm: String (default: String("backward")) The normalization mode.

Returns
  • Array - The n-dimensional FFT of the input array.
Last updated on