hbHPLImFormat

typedef enum { HB_IM_FORMAT_INTERLEAVED = 0, HB_IM_FORMAT_SEPARATE } hbHPLImFormat;

Enumeration of data layout formats for imaginary numbers.

  • Member

    Member NameDescription
    HB_IM_FORMAT_INTERLEAVEDThe real and imaginary data are interleaved, as follows, R I R I..., which stored in the address pointed to by the real part pointer.
    HB_IM_FORMAT_SEPARATEThe real and imaginary data are arranged independently, as follows, R R... I I..., which stored in the addresses pointed to by the real and imaginary pointers, respectively.