Correlation of a vector with a matrix which has columns that are of different size than the vector
8 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi,
I try to calculate the correlation between a vector let’s say 10x1 and a matrix 10x2 but in the matrix the second column only starts at the 3rd value. Using the corr function I get a value for the first correlation but a NaN for the second one. Is there a way to somehow adjust the vector to the size of the 2nd column to also compute the correlation with it? In my real problem the matrix is way bigger and almost every column has some values missing but only at the beginning.
Thank you in advance!
0 Commenti
Risposte (1)
Ngoc Tran
il 2 Apr 2018
A = rand(10,1);
B = rand(10,2);
B(1:2,2) = NaN;
corr(A,B,'rows','complete')
0 Commenti
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!