获取参数估计的置信区间

时间:2018-09-24 14:58:00

标签: matlab regression tostring curve-fitting confidence-interval

在拟合回归线时使用cftool,默认情况下,其将参数估算值的95%置信界显示为

Linear model Poly1:
     f(x) = p1*x + p2

Coefficients (with 95% confidence bounds):
   p1 =         ...  (..., ...)
   p2 =         ...  (..., ...)

是否可以使用此曲线拟合工具框获取 99%置信区间?

1 个答案:

答案 0 :(得分:0)

使用cfit对象的confint方法:

ci = confint(fitresult, 0.99)

您可能想看一下标题为“ Fit Postprocessing”的文档文章。