replace values with nans
조회 수: 5 (최근 30일)
이전 댓글 표시
I have a matrix data. i applied a condition and i get the idx. i want to replace that idx values with Nans.
plz suggest the process for this.
Thanks....
댓글 수: 0
채택된 답변
추가 답변 (1개)
Jos (10584)
2019년 3월 18일
Take a look at logical indexing or the function ind2sub
M = randi(10,8,6)
% use indices of elements for which condition is true
idx = find(M > 8)
M(sub2ind(size(M), idx)) = NaN
% use logical indexing (easier in many cases)
M(M < 3) = 999
댓글 수: 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!