Delphi算法求解4或5参数物流方程?

发布于 2024-12-13 11:52:54 字数 1459 浏览 2 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过去的过去 2024-12-20 11:52:54

您可以使用非线性曲线拟合库,例如使用 Levenberg-Marquardt 算法

我已经使用过这个C开源库,非常容易与Delphi交互(使用编译后) BC++ 编译器)。

该代码基于 标准 lmfit 众所周知的算法实现,并且完美求解 4PL 或 5PL 方程。我已在高价值生物软件中使用此库,包括使用 NIST 参考资料进行全面验证。我不能在这里包含 Delphi 代码(这是受版权保护的),但 C 源代码已准备好在上面下载,并且易于使用(只需包含一个 .obj 文件 - 或制作一个纯德尔菲转换)。

您周围有几个付费库,但我没有找到比 lmfit 更好、更快或更准确的库。

You can use non-linear curve fitting library, e.g. using Levenberg-Marquardt algorithm.

I've already used this C open source library, very easy to interface with Delphi (after compilation with BC++ compiler).

This code is based on standard lmfit well-known implementation of the algorithm, and perfectly resolve 4PL or 5PL equations. I've used this library in high-value biological software, including full validation using NIST reference material. I can not include the Delphi code here (this is copyrighted) but the C source code is ready to be downloaded above, and easy to work with (just one .obj file to include - or make a pure Delphi conversion).

You have several paid libraries around, but I did not find anything better, faster, or more accurate than lmfit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文