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

3 次查看(过去 30 天)
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]

回答(1 个)

Star Strider
Star Strider 2020-11-26
Use the hold function.

Community Treasure Hunt

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

Start Hunting!

Translated by