How can I remove zeroes column from matrix without removing NaN column?

1 回表示 (過去 30 日間)
Riyadh Muttaleb
Riyadh Muttaleb 2019 年 1 月 4 日
コメント済み: Riyadh Muttaleb 2019 年 1 月 4 日
Hi All,
I have matrix contains zeroes columns and NaN columns and numbers columns, I want to remove [JUST zeroes columns] without removing NaN columns,
Thanks in advance,
Riyadh

採用された回答

madhan ravi
madhan ravi 2019 年 1 月 4 日
編集済み: madhan ravi 2019 年 1 月 4 日
matrix(:,~any(matrix==0,1))
% or
matrix(:,any(matrix==0,1))=[]
  7 件のコメント
madhan ravi
madhan ravi 2019 年 1 月 4 日
man ! give an example and your desired output
Riyadh Muttaleb
Riyadh Muttaleb 2019 年 1 月 4 日
It works perfectly without ~ ; matrix(:,all(matrix==0))
Thanks a lot,

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by