How to find uncertainties in the coefficients of polyfit
古いコメントを表示
How to find uncertainties in the coefficients of polyfit
回答 (2 件)
Star Strider
2024 年 1 月 4 日
1 投票
An earlier version of my polyparci function already existed when this question originally posted. It calculates the confidence intervals on each parameter.
I just uploaded a significant upgrade to the original version that now additionally returns the probabilities for each parameter.
Try this:
[P,S,MU] = polyfit(x,y,N)
[y,DELTA] = polyval(P,x,S,MU) % this will give you the error
2 件のコメント
Chris Martin
2014 年 11 月 25 日
Riccardo
2022 年 10 月 8 日
I too am looking for an answer to this!
カテゴリ
ヘルプ センター および File Exchange で Statistics and Machine Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!