How to plot point clouds and linear regression line in the same plot?

3 views (last 30 days)
I have a linear regression with:
X=[-2,-1,0,1,2]';
Y=[0,0,1,1,3]';
p=polyfit(X,Y,1) %p=[0.7,1.00]
c=polyval(p,[2.5,3]) %c=[2.75,3.10]

Answers (1)

Star Strider
Star Strider on 26 Nov 2020
Use the hold function.

Community Treasure Hunt

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

Start Hunting!