scipy curve_fit 的 full_output 选项的文档在哪里?

Where is the documentation for the full_output option of scipy curve_fit?

This post 提到使用 scipy 的 full_output 选项来获取额外数据,包括有关拟合质量的更多信息:

pcov, infodict, errmsg, ier = curve_fit(func, xdata, ydata, sigma = SD, full_output = True)

经过一些搜索(google、scipy 文档),我在 scipy curve_fit documentation 中没有看到任何提及 full_output 选项的内容。

任何人都可以提供一些文档的 link 吗?

如果没有,有人可以描述额外的 return 数据以及如何使用这些数据吗?

来自 ayhan 的评论:docs.scipy.org/doc/scipy-0.19.0/reference/generated/… 它是 leastsq 的一个论点,curve_fit 建立在其之上(见kwargs 部分)