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);
This function computes the element-wise complex conjugate of the complex vector view a and stores the result in the complex vector view r.
const vsip_cvview_p* a: Pointer to the source complex vector view.
const vsip_cvview_p* r: Pointer to the destination complex vector view.
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);