delete null in matrix
23 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have matrix M=[ 0 0 0 7.9286 10.1000 14.3714]
I want to delete null in matrix.
I want matrix M=[7.9286 10.1000 14.3714]
Thanks
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 14 Dic 2013
Modificato: Azzi Abdelmalek
il 14 Dic 2013
M=[ 0 0 0 ; 7.9286 10.1000 14.3714]
M=M(all(M,2),:)
3 Commenti
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Logical 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!