Return the absolute values of all elements of a complex vector that is defined by a vr[:] vector (real part) and a vi[:] vector (imaginary part)
encapsulated function absComplexVector import Modelica; input Real vr[:] "Real part of complex vector"; input Real vi[size(vr, 1)] "Imaginary part of complex vector"; output Real v_abs[size(vr, 1)] "Absolute values of the elements of the complex vector"; end absComplexVector;