MySQL 中的反向测试版
我需要在 MySQL 中实现反向 beta 函数(类似于 Excel 的 BETAINV)。
Wolfram MathWorld 的 Beta Distribution 页面上提供了一些相关材料。
关于从哪里开始在 MySQL 中实现此功能有任何线索吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
查看 cephes 库,特别是
cprob.tgz
。 请注意,该代码的许可情况似乎尚不清楚。 源代码只是说“免费”,这是 Debian 的问题< /a> 所以显然他们让作者根据 GPL 为他们重新授权。Look at the cephes library, specifically
cprob.tgz
. Be warned that the licensing situation of that code seems to be unclear. The source code just says "free", which was a problem for Debian so apparently they got the author to relicense it under the GPL for them.好的,通过将反向 beta 计算移至 PHP 并使用 PHPExcel 包。
Okay, task done by moving inverted beta calculation to PHP and using code from PHPExcel package.