Clear Filters
Clear Filters

How to find the correlation coefficient

1 view (last 30 days)
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

Answers (1)

Ameer Hamza
Ameer Hamza on 11 Mar 2020
Use corrcoef:
load('RI_Aorta.mat')
load('RI_Femoral.mat')
corrcoef(x,y)

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!