highest correlation values of a data
1 次查看(过去 30 天)
显示 更早的评论
i have the following data, i want to find 10 columns of * h* that are correlated with _ j_ the most. That is, the columns that have the highest correlation value. Please take a look at my code below.
sigma = eye(500); mu = repelem(zeros,500); xTrain = mvnrnd(mu,sigma,100); xTest = mvnrnd(mu,sigma,100); yTrain = binornd(1,0.5,100,1); yTest = binornd(1,0.5,100,1);
h = vertcat(xTrain, xTest);
j = vertcat(yTrain, yTest);
%%%%%%%%% correlation of every row of h with j, c = corr(h(:,1),j);
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!