• Inverse fast Fourier transform.

    Computes the inverse 1-dimensional discrete Fourier transform over the inner-most dimension of input.

    const real = tf.tensor1d([1, 2, 3]);
    const imag = tf.tensor1d([1, 2, 3]);
    const x = tf.complex(real, imag);

    x.ifft().print(); // tf.spectral.ifft(x).print();

    Parameters

    • input: Tensor<Rank>

      The complex input to compute an ifft over.

    Returns Tensor

    Doc

Generated using TypeDoc