How to find the correlation coefficient
이전 댓글 표시
I have a data of x and y with each 1*305 matrix
I want to find the correlation coefficient can any one help me with it how to find
The name of the files are RI_Aorta and RI_Femoral
답변 (1개)
Ameer Hamza
2020년 3월 11일
Use corrcoef:
load('RI_Aorta.mat')
load('RI_Femoral.mat')
corrcoef(x,y)
카테고리
도움말 센터 및 File Exchange에서 Correlation and Convolution에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!