corrcoef command
3 次查看(过去 30 天)
显示 更早的评论
If I need to find the correlation between two vectors by using corrcoef, is it possible to use it if nan appears in the data? and if not how is it possible to find the correlation if nan is present? Do I need to interpolate over the nan's with the surrounding values?
Also, is it also possible to find the correlation between more than one vector?
0 个评论
回答(2 个)
Wayne King
2012-1-10
Yes, the data can have NaNs, but you then have to use the 'rows' input and set one of the values to:
Either 'all' (default) to use all rows, 'complete' to use rows with no NaN values, or 'pairwise' to compute R(i,j) using rows with no NaN values in either column i or j.
That is straight from the documentation.
Yes, you can input multiple vectors, each row is an observation and the columns are the variables. That is also documented.
0 个评论
Sravantej
2012-1-10
hi lestyn, you can also get correlation between two vectors using xcorr [x,lag]=xcorr(s1,s2); [max,ind]=max(abs(x)); delay=lag(ind); Here, x gives correlation values and delay gives the delay between the two vectors
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!