How can I do a linear fit with forced slope?

11 ビュー (過去 30 日間)
LOre
LOre 2013 年 3 月 16 日
I'm trying to make a best fit of data forcing the slope of a linear fitting...is it possible? How?

採用された回答

Matt J
Matt J 2013 年 3 月 16 日
編集済み: Matt J 2013 年 3 月 16 日
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);
  1 件のコメント
LOre
LOre 2013 年 3 月 19 日
Thanks very much Matt J... :D

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear and Nonlinear Regression についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by