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

4.1.9 vsip_vexp10_p - Element-wise Base-10 Exponential of a Vector View

void vsip_vexp10_f(const vsip_vview_f* a, const vsip_vview_f* r);
Description

This function computes the element-wise base-10 exponential of the vector view a and stores the result in the vector view r.

      ai
ri= 10
Parameters
Example

vsip_vview_f *src_vector_view; 
vsip_vview_f *dst_vector_view; 
 
// Assuming src_vector_view and dst_vector_view have been properly initialized 
vsip_vexp10_f(src_vector_view, dst_vector_view);