Hey I have a matrix x=[1;2;0;0;0;3;4;5;0;6;0;4;0;6;3;2;1;1;0]; how do I remove the zeros from this matrix?

 採用された回答

David Fletcher
David Fletcher 2018 年 4 月 3 日

1 投票

x(x==0)=[]

2 件のコメント

vedesh Mohit
vedesh Mohit 2018 年 4 月 3 日
does this also look at the zeros in values like 10 or 100 or just the value zero alone?
David Fletcher
David Fletcher 2018 年 4 月 3 日
編集済み: David Fletcher 2018 年 4 月 3 日
No, just the value of 0. If you need to remove the zeros in everything, it might be easier to convert it to a string, remove the zero characters, and then convert it back to numbers

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File Exchange で Numeric Types についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by