SciMax Toolbox Syms

SciMax Toolbox >> Matrix

Matrix

Returns a non-parsed Maxima matrix

Calling Sequence

m=Matrix(a_1,[a_2,[...]])

Parameters

a_n

matrices with the same numbers of columns

l

is a sym-matrix in a non-parsed form

Description

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.

Examples

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)

Author

See also

SciMax Toolbox Syms