void vsip_vhypot_f(const vsip_vview_f *a, const vsip_vview_f *b, const vsip_vview_f *r);
This function computes the element-wise hypotenuse (Euclidean norm) of corresponding elements from two vectors. The operation performs element-wise computation:

for all
from 0 to
, where
is the length of the vectors.
const vsip_vview_p* a: First input vector containing one set of components.
const vsip_vview_p* b: Second input vector containing the other set of components.
const vsip_vview_p* r: Output vector that will store the hypotenuse results.
All three vectors must have the same length.