corrcoef command
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Wayne King
el 10 de En. de 2012
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 comentarios
Sravantej
el 10 de En. de 2012
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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!