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

Overview

Multiplies a complex vector by a floating point vector and returns the complex result.

Dispatcher Prototype

void volk_32fc_32f_multiply_32fc(lv_32fc_t* cVector, const lv_32fc_t* aVector, const
float* bVector, unsigned int num_points);
float complex lv_32fc_t
Definition: volk_complex.h:74

Inputs

  • aVector: The input vector of complex floats.
  • bVector: The input vector of floats.
  • num_points: The number of data points.

Outputs

  • outputVector: The output vector complex floats.

Example

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