This function returns the scalar product of two given arrays of Complex numbers.
function scalarProduct import Complex; input Complex c1[:] "Vector of Complex numbers 1"; input Complex c2[size(c1, 1)] "Vector of Complex numbers 2"; output Complex c3 "= c1*c2"; end scalarProduct;