Overview
Converts a complex vector of 16-bits integer each component into a complex vector of 32-bits float each component.
Dispatcher Prototype
Inputs
- inputVector: The complex 16-bit integer input data buffer.
- num_points: The number of data values to be converted.
Outputs
- outputVector: pointer to a vector holding the converted vector.
Example
int N = 10000;
unsigned int alignment = volk_get_alignment();
volk_16ic_convert_32f(output, input, N);