void vsip_vmsa_f(vsip_vview_f const *a, vsip_vview_f const *b, vsip_scalar_f alpha, vsip_vview_f const *r); void vsip_cvmsa_f(vsip_cvview_f const *a, vsip_cvview_f const *b, vsip_cscalar_f alpha, vsip_cvview_f const *r);
This function performs an element-wise multiply-scalar-add operation on two input vectors and a scalar constant. The operation performs element-wise computation:

for all
from 0 to
, where
is the length of the vectors.
vsip_dvview_p const* a: First input vector.
vsip_dvview_p const* b: Second input vector.
vsip_dscalar_p alpha: Scalar argument
vsip_dvview_p const* r: Output vector that will store the results.