Statistical function in C #

I am doing some work in C # to compute the binomial probability density function of some variables. Just roaming is there a package that I can use?

+3
source share
2 answers

You can always go to the C / C ++ library or (even better) create a lightweight C ++. NET-shell in your solution, which has something in common with such a library. Then you can use something like the GNU science library . There will always be many more choices.

EDIT: with "pick from there," I mean the "world" of C / C ++ as a whole.

+1
source

You can try Math.net

+3
source

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


All Articles