Find function for Matrix

조회 수: 2 (최근 30일)
Jonathan Moorman
Jonathan Moorman 2020년 8월 20일
댓글: Jonathan Moorman 2020년 8월 20일
Hi! I'm trying to use the find function for the first time in my code and have come across a problem. It appears that in about half my runs, the function is unable to find the value in the matrix when it is clearly there. Has anyone seen this error before or am I doing something incorrect in the code?
Below is three screenshots of the value it should be looking for (0.1573), in the matrix (a90Export6dB), and I am getting a empty vector when the value is clearly there.
Figure 1:
Figure 2:
Figure 3:

채택된 답변

KSSV
KSSV 2020년 8월 20일
편집: KSSV 2020년 8월 20일
When you are comapring a floating point number you should not use ==, you should fix some tolerance and use inqualitty. Check the below example code:
tol = 10^-5 ;
val = rand ;
A = rand(1,10) ;
A(5) = val ; % replace this index with vl to seek later
idx = abs(A-val)<=tol ; % logical indices
id = find(idx) % index
  댓글 수: 1
Jonathan Moorman
Jonathan Moorman 2020년 8월 20일
Worked great!. Thank you

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by