How can I calculate the slope of third order polynomial fit

5 ビュー (過去 30 日間)
Lameck Amugongo
Lameck Amugongo 2019 年 7 月 12 日
コメント済み: Lameck Amugongo 2019 年 7 月 12 日
I have a third order polynomial fit. I would like to calculate the slope of the fit. Any ideas on how i can do this? Is possible to obtain this from the coefficients?
[p,S] = polyfit(x,y,3);
[y_fit,delta] = polyval(p,x,S);

回答 (1 件)

John D'Errico
John D'Errico 2019 年 7 月 12 日
Is there a reason why you would not think to differentiate it?
help polyder
  1 件のコメント
Lameck Amugongo
Lameck Amugongo 2019 年 7 月 12 日
I would just want to see if the measurement is decreasing/increasing/remaining constant overtime.
for example, [p,S] = polyfit(x,y,1);
p(1) will give the slope of the fit.
How can i get the same slope from high order fit e.g. [p,S] = polyfit(x,y,3); or [p,S] = polyfit(x,y,2);?
Thanks

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

カテゴリ

Help Center および File ExchangeGet Started with Curve Fitting Toolbox についてさらに検索

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by