correlation
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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
0 Commenti
Risposte (2)
Paulo Silva
il 2 Set 2011
maybe using corr on the transposed array?!
1 Commento
Niki
il 2 Set 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);
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!