Complex C64 conjugation on interleaved storage.
Returns the complex conjugate of an interleaved complex64 vector by
negating every imaginary component (every odd-indexed float) and leaving
the real components untouched. Implemented as a vDSP_vneg over the
stride-2 imaginary view.
Math
References
Accelerate.framework vDSP_vneg.
Parameters
aconst float*Interleaved complex input, length floats.
outfloat*Interleaved complex output, length floats (may alias
a).nstd::size_tNumber of complex elements.