void vsip_cvjmul_f(const vsip_cvview_f* a, const vsip_cvview_f* b, const vsip_cvview_f* w); void vsip_cvjmul_d(const vsip_cvview_d* a, const vsip_cvview_d* b, const vsip_cvview_d* w);
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.
const vsip_cvview_p* a: Pointer to the first source complex vector view.
const vsip_cvview_p* b: Pointer to the second source complex vector view.
const vsip_cvview_p* w: Pointer to the destination complex vector view.
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);