How do you perform correlation coefficient for every ten rows in a specific column of a matrix?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have a somewhat large matrix (685 rows by 12 columns) that I need to take the correlation coefficient over every ten rows of specific columns that I need to specify. Any help would be appreciated.
댓글 수: 0
답변 (1개)
Vimal Rathod
2021년 6월 21일
Hi,
You could use the following snippet to find out correlation coefficient over every 10 rows of some specific column.
r = rand(685,12);
column = 3; % specify the column in which you want correlation coefficient
for i = 1:10:numel(r(:,1))
if(i+9 < 685)
b(:,i) = r(i:i+9,column);
end
end
c = corrcoef(b);
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!