Cut the last n of matrix row ?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Andrei Bobrov
il 25 Mar 2013
Modificato: Andrei Bobrov
il 25 Mar 2013
a = (1:7)'; n = 2;
A = a(1:end - n);
or
a(end - [n-1, 0]) = [];
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Statistics and Machine Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!