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

4.2.10 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);
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);