Why isn't this value being saved using ismember and round?

조회 수: 2 (최근 30일)
Wolfgang McCormack
Wolfgang McCormack 2021년 3월 13일
답변: Star Strider 2021년 3월 13일
Hi all,
I have the following code and it almost works for all my values except two. Nothing being saved in Xsaved
AllRatios = ([0.1:0.05:1])
%it does not work for the following ratios: 0.45 and 0.65. I wonder if
%that's because thry are less than 0.45 and are rounded or not!
Actualvalue = 0.448533333333333
CurRatio= round(Actualvalue,2) % it returns 45, I tried it with 'significant' method as well
for i = 62:62
if ismember(CurRatio,AllRatios)
Xsaved(1,i) = ([CurRatio])
else
NoSaved = 0
end
end

채택된 답변

Star Strider
Star Strider 2021년 3월 13일
Since decimal fractions are never exact (even using round), use ismembertol (introduced in R2015a) for the comparisons. It will be necesary to experiment with the tolerance value to get it to work as desired.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by