我用Matlab拟合了一条曲线,给出了答案:
fitresult_hc_fan =
General model:
fitresult_hc_fan(t) = Tss-(Tss-T0)*exp(-t/tau)
Coefficients (with 95% confidence bounds):
T0 = 71.41 (70.2, 72.61)
Tss = 25.82 (25.55, 26.09)
tau = 0.8787 (0.8309, 0.9265)
我知道我可以通过简单地使用点+系数名称来提取系数,例如:
fit_result_hc_fan_T0 = fitresult_hc_fan.T0;
但我无法获得95%的置信度t0.95。
需要帮助。感谢。