• Inversed real value input fast Fourier transform.

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

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

    x.irfft().print();

    Parameters

    • input: Tensor<Rank>

      The real value input to compute an irfft over.

    Returns Tensor

    Doc

Generated using TypeDoc