Returns a non-parsed Maxima matrix
m=Matrix(a_1,[a_2,[...]])
matrices with the same numbers of columns
is a sym-matrix in a non-parsed form
The matrices a_1,...,a_p
are concatened with the Maxima function addrow
.
This function keeps the Maxima format of the matrix. It is useful to make matrix of matrices.
a=[1 2;3 4],A=sym(a),AA=Matrix(a),~A,~AA B=[Matrix(a) Matrix(a+1);Matrix(a^2) Matrix(2*a)],det(B) C=Matrix(a,a,a)