Mostrar comentarios más antiguos
hi, how I can find the correlation of an array?
I found corr, but it is find correlation between each two columns . how I can find the correlation between rows.
are there command find the correlation among more than two rows?
thanks
Respuestas (2)
Paulo Silva
el 2 de Sept. de 2011
0 votos
maybe using corr on the transposed array?!
1 comentario
Niki
el 2 de Sept. de 2011
I think you can transpose your matrix like this
for example you have a Matrix >>X=rand(10) then >>X=X';
and then perform "corr" or "corrcoef"
like >>[R]=corrcoef (X);
huda nawaf
el 2 de Sept. de 2011
0 votos
1 comentario
Oleg Komarov
el 2 de Sept. de 2011
Rand is just an example, just transpose your matrix.
Categorías
Más información sobre Correlation and Convolution en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!