highest correlation values of a data

1 view (last 30 days)
fafz1203
fafz1203 on 20 Oct 2016
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);

Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!