Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

4.4.1 vsip_cvjmul_p - Element-wise Complex Conjugate Multiplication of Two Complex Vector Views

void vsip_cvjmul_f(const vsip_cvview_f* a, const vsip_cvview_f* b, const vsip_cvview_f* w);
Description

This function performs element-wise complex conjugate multiplication of the complex vector views a and b and stores the result in the complex vector view w.

Parameters
Example

vsip_cvview_f *complex_vector_a; 
vsip_cvview_f *complex_vector_b; 
vsip_cvview_f *result_vector; 
 
// Assuming complex_vector_a, complex_vector_b, and result_vector have been properly initialized 
vsip_cvjmul_f(complex_vector_a, complex_vector_b, result_vector);