Error message Undefined variable isnan

조회 수: 7 (최근 30일)
Ursula
Ursula 2012년 10월 18일
Hi,
I am new to using mathlab so apologies if this is obvious.
for i=1:2705
borntime(i)=min(find(~isnan(final_n(i),:)))
end
I am getting an error message saying undefined variable isnan.
If anyone could help me it would be great.
Final_n is a matrix of 2705x1209.
Thanks.

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2012년 10월 18일
편집: Azzi Abdelmalek 2012년 10월 18일
final_n=rand(2705,5);
for i=1:2705
borntime(i)=min(find(~isnan(final_n(i,:))));
end
the error was in
~isnan(final_n(i),:)
  댓글 수: 3
Azzi Abdelmalek
Azzi Abdelmalek 2012년 10월 18일
it's just an example to test your code
Ursula
Ursula 2012년 10월 18일
Thats perfect thanks!

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

추가 답변 (1개)

Sean de Wolski
Sean de Wolski 2012년 10월 18일
What is the output from:
which -all isnan
If nothing shows up:
rehash toolboxcache

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by