"find" function doesn't work
    조회 수: 8 (최근 30일)
  
       이전 댓글 표시
    
Hi~ I got a weird problem here. See the attached picture. "find" works for some values and doesn't for some others. It could a stupid question but can anybody help? Thanks a lot!
So the wavelength vector "lem" has some value but "find" can't find it.
The following is what happens in the command window. It can find the number value but can't find the variable x which equals that value.
>> x
x =
507.0350
>> jj = find(lem==x)
jj =
   Empty matrix: 1-by-0
>> jj = find(lem==507.0350)
jj =
        3408
댓글 수: 0
채택된 답변
  Walter Roberson
      
      
 2011년 10월 4일
        find() works fine. Your array does not contain the value in x. If you were to try
lem(3408) - x
you would find that the result is non-zero.
댓글 수: 6
추가 답변 (0개)
참고 항목
카테고리
				Help Center 및 File Exchange에서 Creating, Deleting, and Querying Graphics Objects에 대해 자세히 알아보기
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

