Error message Undefined variable isnan
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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.
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 18 Okt. 2012
Bearbeitet: Azzi Abdelmalek
am 18 Okt. 2012
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 Kommentare
Weitere Antworten (1)
Sean de Wolski
am 18 Okt. 2012
What is the output from:
which -all isnan
If nothing shows up:
rehash toolboxcache
0 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!