How can I do a linear fit with forced slope?

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

Products

Asked:

on 16 Mar 2013

Community Treasure Hunt

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

Start Hunting!