Fastest & most effective way to create this matrix:
Ältere Kommentare anzeigen
Hey there, I have been searching for hours for a good solution & not found one yet. I need to create this matrix (6X6):
A = 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 1 2 3
0 0 0 4 5 6
0 0 0 7 8 9
It must be in an effective & short way. Thank you if anyone can help with this one.
Akzeptierte Antwort
Weitere Antworten (1)
clear A;
A(4:6,4:6) = reshape(1:9,3,3)'
2 Kommentare
Eitan
am 19 Dez. 2014
Sean de Wolski
am 19 Dez. 2014
I'd expect this to be the fastest way to do this.
Kategorien
Mehr zu Operators and Elementary Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!