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

17 ビュー (過去 30 日間)
Rohit P
Rohit P 2022 年 10 月 7 日
コメント済み: Rohit P 2022 年 10 月 10 日
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

採用された回答

Bruno Luong
Bruno Luong 2022 年 10 月 7 日
編集済み: Bruno Luong 2022 年 10 月 7 日
If you have the right toolbox, use https://fr.mathworks.com/help/stats/corr.html
  5 件のコメント
Bruno Luong
Bruno Luong 2022 年 10 月 7 日
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 2022 年 10 月 10 日
Ok..Thats exactly what i wanted.. Thank You.!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics についてさらに検索

タグ

製品


リリース

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by