Corrcoef creating NaNs from datasets with no NaNs
Ältere Kommentare anzeigen
I have been trying to analyse correlations between temperature and pressure fields or a temperature field and a time series and for some reason even though neither the temperature or pressure datasets have any NaNs in them corrcoef is producing NaNs.
What reasons are there for this to happen?
The NaNs that are being produced are propagating through my program and causing problems with the output.
Antworten (2)
Youssef Khmou
am 24 Sep. 2013
hi, because your data contain similar values, here is an example :
corrcoef([ones(4,1) ones(4,1)])
Sean de Wolski
am 24 Sep. 2013
corrcoef(zeros(10,1),zeros(10,1))
They'll occur from 0/0 or inf/inf
2 Kommentare
Rhiannon
am 24 Sep. 2013
Sean de Wolski
am 24 Sep. 2013
Bearbeitet: Sean de Wolski
am 24 Sep. 2013
It's hard to say without seeing the data. You could run the following and then run your code:
dbstop if naninf
Which will stop with the debugger when the NaN is calculated and you can inspect what's going on.
Kategorien
Mehr zu NaNs finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!