How can I remove zeroes column from matrix without removing NaN column?
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
madhan ravi
2019 年 1 月 4 日
編集済み: madhan ravi
2019 年 1 月 4 日
matrix(:,~any(matrix==0,1))
% or
matrix(:,any(matrix==0,1))=[]
7 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!