Inner product of two same length vectors
function innerProduct input Real x1[:] = {1, 2, 3, 4} "Vector 1"; input Real x2[size(x1, 1)] = {1, 2, 3, 4} "Vector 2"; output Real y = 0. "Result"; end innerProduct;