Linear Fitting starting from a value
2 ビュー (過去 30 日間)
古いコメントを表示
Hi everyone!
I need to fit these data [100 90 80 70 50 45 40 43 42 40 35] whom are distanced by 10 seconds.
The problem is that I would fit these data starting from the first value (100) in order to understand the slope of the line.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1151215/image.png)
Is it possible?
Thanks!
0 件のコメント
採用された回答
Torsten
2022 年 10 月 10 日
編集済み: Torsten
2022 年 10 月 10 日
Sure. Use
l(x) = a*x + 100
as model function and fit the parameter a.
xdata = ...; % your xdata as column vector
ydata = ...; % your ydata as column vector
a = xdata\(ydata-100)
But starting from a certain x-value, the slope seems to change. You should separate the fit into two parts:
l1(x) = a*x + 100 0 <= x<= x1
l2(x) = b*x + [(a-b)*x1 + 100] x1 <= x <= x(end)
0 件のコメント
その他の回答 (1 件)
Hiro Yoshino
2022 年 10 月 10 日
編集済み: Hiro Yoshino
2022 年 10 月 10 日
refline is the easiest way to achieve that.
y = [100 90 80 70 50 45 40 43 42 40 35];
x = 0:10:10*(length(y)-1);
plot(x,y,'o');
refline
if you want to know the coefficients:
p = polyfit(x,y,1)
polyfit for reference.
参考
カテゴリ
Help Center および File Exchange で Linear and Nonlinear Regression についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!