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

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

1.3.7 vsip_vrealview_p - Get the Real Part View of a Complex Vector View

vsip_vview_f* vsip_vrealview_f(const vsip_cvview_f* v);
Description

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

Parameters
Return Value
Example

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