Vector Optimized Library of Kernels  2.0
Architecture-tuned implementations of math kernels

Overview

Deinterleaves the complex 8-bit char vector into just the I (real) vector and converts it to 16-bit shorts.

Dispatcher Prototype

void volk_8ic_deinterleave_real_16i(int16_t* iBuffer, const lv_8sc_t* complexVector, unsigned int num_points)

Inputs

  • complexVector: The complex input vector.
  • num_points: The number of complex data values to be deinterleaved.

Outputs

  • iBuffer: The I buffer output data.

Example

int N = 10000;
volk_8ic_deinterleave_real_16i();