replace minimum value of each column with nan
1 回表示 (過去 30 日間)
古いコメントを表示
i have a 10*10 matrix.
How to replace the minimum value from each column with nans.
ex; [10,5
2,8
8,1];
the desired out put should be like
[10,5
nan,8
8,nan];
thanks
0 件のコメント
採用された回答
madhan ravi
2019 年 3 月 18 日
編集済み: madhan ravi
2019 年 3 月 18 日
M(M==min(M))=nan % where M is your matrix
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で NaNs についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!