C# 的卡方分布?
我想用 C# 创建一个实现卡方分布的算法。我
在互联网上找到了很多实现,但它们都使用了大量框架,我希望学校的项目能够更简单。
这怎么能做到呢?
I would like to create an algorithm in C# that implements the chi-square distribution. I
I have found a bunch of implementations on the internet but all of them use a lot of framework and I would like somthing simpler for a project at school.
How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
几年前,我将 Perl 模块 Statistics::Distributions 移植到 JavaScript。在其他发行版中,它实现了卡方。它非常轻量且简单。您可以在 http://statistics-distributions-js 找到该实现.googlecode.com/files/statistics-distributions-001.js。
将其移植到 C# 应该不会太难。或者您可以尝试类似 http://jint.codeplex.com/ 并查看是否可以运行直接在 .NET 上使用 JavaScript。
A couple of years ago I ported the Perl module Statistics::Distributions to JavaScript. Among other distributions, it implements chi-square. It is a very lightweight and simple. You can find that implementation at http://statistics-distributions-js.googlecode.com/files/statistics-distributions-001.js.
It shouldn't be too hard to port that to C#. Or you can try something like http://jint.codeplex.com/ and see if you can just run the JavaScript directly on .NET.