Generate a complex vector from a real part vector and imaginary part vector
function fromRealAndImag import Complex; input Real real[:]; input Real imag[size(real, 1)]; output Complex result[size(real, 1)] "Number of real zeros"; end fromRealAndImag;