Cut the last n of matrix row ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
e.g i have matrix a :
1
2
3
4
5
6
7
i want to cut the last 2 row of matrix A ? and become
1
2
3
4
5
0 Kommentare
Akzeptierte Antwort
Andrei Bobrov
am 25 Mär. 2013
Bearbeitet: Andrei Bobrov
am 25 Mär. 2013
a = (1:7)'; n = 2;
A = a(1:end - n);
or
a(end - [n-1, 0]) = [];
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Statistics and Machine Learning Toolbox 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!