How to print several matrices with different dimensions from a single line of code?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Aryan Ritwajeet Jha
am 4 Jul. 2020
Bearbeitet: madhan ravi
am 4 Jul. 2020
Input (randomly chosen):
A=ones(4);
B=magic(5);
C=hilb(6);
Is there an easy method to print all of the matrices from a single line of code (instead of leaving those semi colons off)? Please note that I do not want them manipulated and/or concatenated in any way.
Desired output for the above input is given here (obtained here, by leaving the semi colons off):
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/326723/image.png)
0 Kommentare
Akzeptierte Antwort
madhan ravi
am 4 Jul. 2020
Bearbeitet: madhan ravi
am 4 Jul. 2020
ABC = {A, B, C};
[A, B, C] = ABC{:}
3 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!