How to find the correlation coefficient

1 次查看(过去 30 天)
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
Ameer Hamza 2020-3-11
Use corrcoef:
load('RI_Aorta.mat')
load('RI_Femoral.mat')
corrcoef(x,y)

类别

Help CenterFile Exchange 中查找有关 Statistics and Machine Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by