I had a matrix s of size 4*12540, i want to use only 4*4 of this matrix how should i remove extra columns?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
amina mehmood
il 31 Mar 2014
Commentato: amina mehmood
il 31 Mar 2014
I had a matrix s of size 4*12540, i want to use only 4*4 of this matrix how should i remove extra columns?
0 Commenti
Risposta accettata
Più risposte (1)
Joseph Cheng
il 31 Mar 2014
Modificato: Joseph Cheng
il 31 Mar 2014
If you want to completely remove these columns you can use [] ;
example:
Testmatrix = rand(4,12540);
Testmatrix(:,5:end) = [];%All rows in columns 5 through end are blank;
0 Commenti
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!