필터 지우기
필터 지우기

value replacement in an array

조회 수: 2 (최근 30일)
Yazdan Kordestany
Yazdan Kordestany 2016년 9월 9일
댓글: Star Strider 2016년 9월 9일
Hi all,
I have a big 2D array and I want to change some of their values. So, I am using A(A==value)=value2. However, it just works for some specific values, for instance it works, when A(A==7.843120581576564e-04) = 1, but I cannot change it when A(A==0.183079763461368)=2. could the decimal be the reason?
Thanks, Yaz

채택된 답변

Star Strider
Star Strider 2016년 9월 9일
My guess is that it’s not an exact match for the value in ‘A’. See Why is 0.3 - 0.2 - 0.1 (or similar) not equal to zero? for an explanation of one possible reason.
  댓글 수: 2
Yazdan Kordestany
Yazdan Kordestany 2016년 9월 9일
Thanks Star, I checked and you were right. However, I was not able to solve it yet, so I used excel instead and load it on matlab.
Star Strider
Star Strider 2016년 9월 9일
My pleasure.
If the value already exists in ‘A’ and you want to find other instances of it, use the existing value to compare, since it is likely to have the necessary precision.
Another option is to set a range:
A = 0.183079763461368;
A(A>=0.183079763461367 & A<=0.183079763461369)=2;
This runs without error and sets the single value of ‘A’ here to 2. You will need to experiment with it in your code to see if it does what you want.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by