Correlation of a vector with a matrix which has columns that are of different size than the vector
13 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Ngoc Tran
2018-4-2
A = rand(10,1);
B = rand(10,2);
B(1:2,2) = NaN;
corr(A,B,'rows','complete')
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!