필터 지우기
필터 지우기

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 CenterFile Exchange에서 Numeric Types에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by