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

Overview

Deinterleaves the complex 16 bit vector into I & Q vector data and returns the result as two vectors of floats that have been scaled.

Dispatcher Prototype

void volk_16ic_s32f_deinterleave_32f_x2(float* iBuffer, float* qBuffer, const
lv_16sc_t* complexVector, const float scalar, unsigned int num_points){
short complex lv_16sc_t
Definition: volk_complex.h:71

Inputs

  • complexVector: The complex input vector of 16-bit shorts.
  • scalar: The value to be divided against each sample of the input complex vector.
  • num_points: The number of complex data values to be deinterleaved.

Outputs

  • iBuffer: The floating point I buffer output data.
  • qBuffer: The floating point Q buffer output data.

Example

int N = 10000;
volk_16ic_s32f_deinterleave_32f_x2();
VOLK_API void volk_free(void *aptr)
Free's memory allocated by volk_malloc.
Definition: volk_malloc.c:80