Adelsbach/VSIPL
Core Light Programming Reference Guide
DD-00014-015
Core Light

6.16 vsip_vimagview_p - Get the Imaginary Part View of a Complex Vector View

vsip_vview_f* vsip_vimagview_f(const vsip_cvview_f* v);
Description

This function returns a view of the imaginary part of the complex vector view v.

Parameters
Return Value
Example

vsip_cvview_f *complex_vector_view; 
vsip_vview_f *imaginary_part_view; 
 
// Assuming complex_vector_view has been properly initialized 
imaginary_part_view = vsip_vimagview_f(complex_vector_view); 
 
if (imaginary_part_view == NULL) { 
    // Handle error 
}