Corrcoef creating NaNs from datasets with no NaNs

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.

Answers (2)

hi, because your data contain similar values, here is an example :
corrcoef([ones(4,1) ones(4,1)])
corrcoef(zeros(10,1),zeros(10,1))
They'll occur from 0/0 or inf/inf

2 Comments

The values in both datasets are quite different to each other. The temperature is around 250-300, pressure 950-1050 and the time series is -10-20
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.

Sign in to comment.

Asked:

on 24 Sep 2013

Community Treasure Hunt

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

Start Hunting!