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!