MATLAB: How to plot single row values of 2 .mat files with linear regression line through it

helplinear regressionlinear regression modellinearregressionregressionregression modelregression models

I have a 2 datasets of .mat files which contain 1*418 matrix in both the .mat files how to plot the regression line for that. I have plottedd the scatter plot for it after that i couldnot able to proceed.
can any one help me.
Thank you.

Best Answer

To add the regression line, you can use polyfit and polyval functions.
load SI_Aorta
load SI_Femoral
% Plot regression line
poly = polyfit(x,y,n) % n is the order of polynomial
y_val = polyval(poly,x) % find estimated values of y
hold on % to add plot to existing scatter plot
plot(x,y_val);
hold off
Related Question