Skip to Content

fft2_op

View the code on GitHub

Structs

Functions

fft2

fft2(x: Array, dims: List[Int] = List(-2, -1), norm: String = String("backward")) -> Array
Compute the 2-dimensional FFT.
Args
  • x: Array The input array.

  • dims: List[Int] (default: List(-2, -1)) The dimensions along which to compute the FFT.

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

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