• Splits a complex Float32Array into real and imag parts.

    The memory layout is interleaved as follows: complex: [r0, i0, r1, i1, r2, i2] real: [r0, r1, r2] imag: [i0, i1, i2]

    This is the inverse of mergeRealAndImagArrays.

    Parameters

    • complex: Float32Array

      The complex tensor values.

    Returns {
        imag: Float32Array;
        real: Float32Array;
    }

    An object with real and imag Float32Array components of the complex tensor.

    • imag: Float32Array
    • real: Float32Array

Generated using TypeDoc