issues with function find()

조회 수: 1 (최근 30일)
Camille
Camille 2013년 3월 2일
I am using find() to find the index of a number in a matrix, but it is returning an empty matrix yet am sure that the number is part of that matrix. Here is the code
tr=0:.1:20;
b=find(tr==2.4)
and it is returning
b =
Empty matrix: 1-by-0
Please I need your help. What am I doing wrong or what should I do instead?

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 2일
Try this
tr=0:.1:20;
b=find(tr==0.1*24)

추가 답변 (1개)

Brian B
Brian B 2013년 3월 2일
편집: Brian B 2013년 3월 2일
Try
tr=0:.1:20;
tr = round(tr*1e12)/1e12;
b=find(tr==2.4)
This is a problem with finite precision. See the explanation offered at http://matlab.wikia.com/wiki/FAQ#Why_is_0.3_-_0.2_-_0.1_.28or_similar.29_not_equal_to_zero.3F.
  댓글 수: 1
Brian B
Brian B 2013년 3월 2일
Actually, if you're using non-integer numbers, a better method is
b= find(abs(tr - 2.4)<1e-12)

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by