Chi-square distribution with C #?

I would like to create an algorithm in C # that implements a chi-square distribution. I

I found many implementations on the Internet, but they all use a lot of frameworks, and I would like for something to be easier for a project in school.

How can I do that?

+3
source share
1 answer

A few years ago, I ported the Perl Statistics :: Distributions module to JavaScript. Among other distributions, it implements a chi-square. It is very light and simple. You can find this implementation at http://statistics-distributions-js.googlecode.com/files/statistics-distributions-001.js .

#. - http://jint.codeplex.com/ , JavaScript .NET.

+2

Source: https://habr.com/ru/post/1789682/


All Articles