Question: Printing matrices next to each other without quotation marks.

Hello.
Can I somehow print several matrices next to each other without getting the quotations marks printet too?
Attached what I currently have.


 

with(LinearAlgebra)

A := RandomMatrix(4); B := RandomMatrix(4); C := RandomMatrix(4); E := RandomMatrix(4)

print("A="*A, "   B="*B, "   C="*C, "   E="*E)

"A="*Matrix(%id = 18446746685123259198), "   B="*Matrix(%id = 18446746685123259438), "   C="*Matrix(%id = 18446746685123259678), "   E="*Matrix(%id = 18446746685123259918)

(1)

``


 

Download matrix_print_attempt.mw

Please Wait...