Create Unit-Spaced Matrix
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Philipp Kutschmann
am 17 Sep. 2022
Beantwortet: Walter Roberson
am 17 Sep. 2022
Hi,
is there a better way to create a simple array of acsending numbers than:
foo = reshape(1:9,3,3)
Thanks
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 17 Sep. 2022
No, that is the best available -- unless you want to count
foo = reshape(1:9,3,[]) %3 rows, as many colums as needed.
If you have the Computer Communications Toolbox, you can use
foo = buffer(1:9, 3) %3 rows
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Types 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!