jax-js
    Preparing search index...

    Type Alias ComplexPair

    A pair of arrays representing real and imaginary part a + bj. Both arrays must have the same shape.

    type ComplexPair = {
        imag: Array;
        real: Array;
    }

    Properties

    imag: Array
    real: Array