Correlation of a vector with a matrix which has columns that are of different size than the vector
8 ビュー (過去 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!