Function augment

Returns an augmented matrix consisting of two matrices with the same number of rows Useful for inverse calculations and solving linear systems of equations

Matrix!(T,rows,columns1+columns2) augment(T, uint rows, uint columns1, uint columns2) (
  Matrix!(T,rows,columns1) lhs,
  Matrix!(T,rows,columns2) rhs
);