delete null in matrix
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Tomas
am 14 Dez. 2013
Kommentiert: Tomas
am 14 Dez. 2013
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 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 14 Dez. 2013
Bearbeitet: Azzi Abdelmalek
am 14 Dez. 2013
M=[ 0 0 0 ; 7.9286 10.1000 14.3714]
M=M(all(M,2),:)
3 Kommentare
Weitere Antworten (1)
sixwwwwww
am 14 Dez. 2013
do it like this:
M=[ 0 0 0 7.9286 10.1000 14.3714];
M = M(M ~= 0)
5 Kommentare
Siehe auch
Kategorien
Mehr zu Logical 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!