How to convert a matrix like this?

1 回表示 (過去 30 日間)
Phung Minh
Phung Minh 2018 年 9 月 4 日
コメント済み: Phung Minh 2018 年 9 月 4 日
Hello everyone, I need a help with this problem. I would like to convert a matrix to another one, like the following examples: A=[1;2;3;0;5;7]----->A=[1;2;3;5;7] B=[0;1;3;4;5;6]---->B=[1;3;4;5;6] That means I have a new matrix without 0. Thank you very much!

採用された回答

madhan ravi
madhan ravi 2018 年 9 月 4 日
編集済み: madhan ravi 2018 年 9 月 4 日
Try this:
A(A==0)=[]
  6 件のコメント
madhan ravi
madhan ravi 2018 年 9 月 4 日
Thank you @Guillaume :)
Phung Minh
Phung Minh 2018 年 9 月 4 日
Thank you ?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSparse Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by