Adelsbach/VSIPL
Core Light Double Precision Programming Reference Guide
DD-00014-015
Core Light +DP

10.5 vsip_cvconj_p - Element-wise Complex Conjugate of a Complex Vector View

void vsip_cvconj_f(const vsip_cvview_f* a, const vsip_cvview_f* r); 
void vsip_cvconj_d(const vsip_cvview_d* a, const vsip_cvview_d* r);
Description

This function computes the element-wise complex conjugate of the complex vector view a and stores the result in the complex vector view r.

Parameters
Example

vsip_cvview_f *complex_vector; 
vsip_cvview_f *result_vector; 
 
// Assuming complex_vector and result_vector have been properly initialized 
vsip_cvconj_f(complex_vector, result_vector);