replace with nans after condition
조회 수: 4 (최근 30일)
이전 댓글 표시
How to do this process
A=[10,0.5
1,8
8,0];
A_max =max(A);
out=[10,8];
i want to replace values <15%A_max with nans
output matrix
Out=[10,nan %0.5 is less than the 15%8
nan,8 % 1 is <15%10
8,nan];
댓글 수: 0
채택된 답변
madhan ravi
2019년 3월 18일
Out = A;
Out(A < (max(A)/100)*15)=nan
댓글 수: 3
madhan ravi
2019년 3월 20일
편집: madhan ravi
2019년 3월 20일
Looks like you have opened up a new question:https://in.mathworks.com/matlabcentral/answers/451040-error-using-matrix-dimensions-must-agree#answer_366174
추가 답변 (1개)
Fangjun Jiang
2019년 3월 18일
A(A<0.15*A_max)=nan
댓글 수: 2
Asliddin Komilov
2020년 1월 17일
I have set of 25 variables (matrices), can I have repliced all zero value to NAN in all of the at once, without doing it for each of them separately?
thanks
참고 항목
카테고리
Help Center 및 File Exchange에서 NaNs에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!