Overview
Multiplys the one complex vector with the complex conjugate of the second complex vector and stores their results in the third vector
Dispatcher Prototype
Inputs
- aVector: One of the complex vectors to be multiplied.
- bVector: The complex vector which will be converted to complex conjugate and multiplied.
- scalar: each output value is scaled by 1/scalar.
- num_points: The number of complex values in aVector and bVector to be multiplied together and stored into cVector.
Outputs
- cVector: The complex vector where the results will be stored.
Example