void vsip_veuler_f(vsip_vview_f const *a, vsip_cvview_f const *r);
This function converts a real vector of angles (in radians) to a complex vector using Euler’s formula. The operation performs element-wise conversion using Euler’s formula:

for all
from 0 to
, where
is the length of the vectors,
is the angle in radians from the input vector, and
is the
corresponding complex number on the unit circle.
vsip_vview_p const* a: Input real vector containing angles in radians.
vsip_cvview_p const* r: Output complex vector that will store the results.
Both vectors must have the same length.
The input angles must be in radians.