Reputation: 23
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
Reputation: 17576
Try 'mat_unblocker'. To see documentation, enter
? mat_unblocker
Upvotes: 2