Adding a row in a matrix.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi guys,
I am currently having a 31x10 matrix. I want to add two rows at the end of this matrix so it becomes 33x10 using a command. ( I know how to do it manually). Is it possible for this to happen?
Thank you
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 6 Dez. 2012
What do you mean by command or manually? This would do it although it is not a good practice.
a=rand(31,10);
a(33,10)=0;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!