How can I do a linear fit with forced slope?

10 views (last 30 days)
I'm trying to make a best fit of data forcing the slope of a linear fitting...is it possible? How?

Accepted Answer

Matt J
Matt J on 16 Mar 2013
Edited: Matt J on 16 Mar 2013
If your data are column vectors x and y and your model is
y=m*x+b
then the solution for b would simply be
b_fit = mean(y-m*x);

More Answers (0)

Categories

Find more on Linear and Nonlinear Regression in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!