Adelsbach/VSIPL
Core Light Double Precision Programming Reference Guide
DD-00014-015
Core Light +DP

6.11 vsip_dvgetattrib_p - Get the Attributes of a Vector View

void vsip_vgetattrib_f(const vsip_vview_f* v, vsip_vattr_f *a); 
void vsip_vgetattrib_d(const vsip_vview_d* v, vsip_vattr_d *a); 
void vsip_vgetattrib_i(const vsip_vview_i* v, vsip_vattr_i *a); 
void vsip_cvgetattrib_f(const vsip_cvview_f* v, vsip_cvattr_f *a); 
void vsip_cvgetattrib_d(const vsip_cvview_d* v, vsip_cvattr_d *a);
Description

This function retrieves the attributes of the vector view v and stores them in the structure pointed to by a.

Parameters
Example

vsip_vview_f *vector_view; 
vsip_vattr_f attributes; 
 
// Assuming vector_view has been properly initialized 
vsip_vgetattrib_f(vector_view, &attributes); 
 
// The attributes of the vector view are now stored in 'attributes'