フィルターのクリア

Convert zeros to NAN

5 ビュー (過去 30 日間)
Nancy
Nancy 2011 年 6 月 14 日
I have a matrix (N rows and M columns). It consists of integer values. I want to convert all the zero values from rows 1:N and columns 3:M to NaN. Is there any way to do so.
Thanks, Nancy

採用された回答

Sean de Wolski
Sean de Wolski 2011 年 6 月 14 日
One of many ways
idx = ~A;
idx(:,1:2) = false;
A(idx) = nan;
  3 件のコメント
Sean de Wolski
Sean de Wolski 2011 年 6 月 14 日
Yes. It sets any value that was a zero value (the ~ (not) command) in the first definition to be false so that it doesn't show up in the nan assignment.
Nancy
Nancy 2011 年 6 月 14 日
Thanks. :)

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by