필터 지우기
필터 지우기

find is not matching a value of 1 in an array

조회 수: 4 (최근 30일)
Jeremy Quandt
Jeremy Quandt 2020년 3월 19일
댓글: Jeremy Quandt 2020년 3월 19일
I am unable to match a value of 1 with find when checking an array produced by linspace. Is this as expected behavior?
% Create our k samples.
k = linspace(0.1, 2.0, 20)
% Find indexes.
[find(k==0.5) find(k==1.0) find(k==1.5)]

채택된 답변

Adam Danz
Adam Danz 2020년 3월 19일
편집: Adam Danz 2020년 3월 19일
This is due to roundoff error.
Here's a demo showing the roundoff error.
k = linspace(0.1, 2.0, 20); % 1 is in positon 10
k(10) - 1
ans =
-1.1102e-16
Here are alternatives.
% find the value of 1
idx = find(ismembertol(k,1));
or
% find the value of 1
[~, idx] = min(abs(k-1))

추가 답변 (1개)

Loren Shure
Loren Shure 2020년 3월 19일
You are running into an issue of floating point arithmetic. You might use ismembertol : mathworks.com/help/matlab/ref/ismembertol.html

카테고리

Help CenterFile Exchange에서 Signal Analysis에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by