how to find correlation of a row with all the other rows of a matrix ?

14 Ansichten (letzte 30 Tage)
Hello guys,
i am stuck at a problem.. i have 30000x8 matrix.. i want to find correlation coefficient of each row in the matrix with all the other rows in the matrix. for Ex- third row correlation with all its previous as well as succeeding rows.. how can i achieve this?.. please help.
Thank You in Advance

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 7 Okt. 2022
Bearbeitet: Bruno Luong am 7 Okt. 2022
If you have the right toolbox, use https://fr.mathworks.com/help/stats/corr.html
  5 Kommentare
Bruno Luong
Bruno Luong am 7 Okt. 2022
C = corrcoef(A.')
C(i,j) provides you the correlation between row i and row j of A.
C(i,:) is the correlation of row i to all other rows.
You need 7 Gb of RAM to store C if your A matrix is 30000 x 8.
Rohit P
Rohit P am 10 Okt. 2022
Ok..Thats exactly what i wanted.. Thank You.!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Descriptive Statistics finden Sie in Help Center und File Exchange

Produkte


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by