user3224387
user3224387

Reputation: 23

generate matrix in MAXIMA using an existing matrix

I have a matrix a:matrix([1,2],[3, 4]) and b:matrix([1, 0],[0, 1]); And I would like to define a new bigger matrix C,

where C : ([a, b],[b, a]).

How can I do this in MAXIMA

Thank You

Upvotes: 2

Views: 233

Answers (1)

Robert Dodier
Robert Dodier

Reputation: 17576

Try 'mat_unblocker'. To see documentation, enter

? mat_unblocker

Upvotes: 2

Related Questions