How to crop some matrix row
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Mahi Nazir
il 4 Set 2014
Commentato: Mahi Nazir
il 4 Set 2014
How do I crop a 105x41 matrix to get a 41x41 matrix. I want to crop the top and bottom rows to get the central 41x41 matrix. Something like opposite of padarray?
0 Commenti
Risposta accettata
Andrei Bobrov
il 4 Set 2014
A = randi([0 255],105,41,'uint8'); % your matrix
i1 = ceil(size(A,1)/2);
out = A(i1 - 20 : i1 + 20,:);
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Multidimensional Arrays 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!