inverse Matrix
function inv input Real A[:, size(A, 1)]; constant Integer n = size(A, 1); output Real Ainv[size(A, 1), size(A, 1)]; end inv;