Documentation about multi-line array (matrix) definition?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Taejun Jang
am 15 Mai 2019
Kommentiert: madhan ravi
am 20 Mai 2019
I found that I can use multi-line matrix literals. That is,
A = [1 2; 3 4; 5 6] % This is the common form we use. In a single line.
is the same as
A = [1 2
3 4
5 6] % Using multiple lines
This also applies to cell arrays.
However, I cannot find any documents about this.
Matrix tutorial https://www.mathworks.com/help/matlab/learn_matlab/matrices-and-arrays.html does not say about ths multi-line array creation.
If I try to find something about multi-line, only https://www.mathworks.com/help/matlab/matlab_prog/continue-long-statements-on-multiple-lines.html shows up.
Is there any documentation about this? Is this usable to all previous versions?
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects 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!