how can i obtain this ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
diadalina
am 21 Nov. 2017
Kommentiert: diadalina
am 21 Nov. 2017
i would like to use the command reshape to convert a vector v=11:99 to a matrix (9x9), how can i do this, can anyone help me ?
0 Kommentare
Akzeptierte Antwort
Birdman
am 21 Nov. 2017
You can not do it when v=11:99.
If you want to convert to 9x9 matrix, then you need to have 81 elements in your vector, with this you have 89. If you define it as v=11:91, then the following command will do what you want.
v=reshape(v,9,9)
Weitere Antworten (1)
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!