Mavershang
Mavershang

Reputation: 1278

Statistical function in C#

I am doing some work in C# to calculate the binomial probability density function of some variables. Just wandering is there any package I can use?

Upvotes: 3

Views: 1099

Answers (2)

steinar
steinar

Reputation: 9653

You can always interop into a C/C++ library or (better yet) create a light C++ .NET wrapper in your solution that interops with such a library. Then you're able to use something like the GNU scientific library. There will always be much more to choose from there.

EDIT: With "choose from there" I'm referring to the C/C++ "world" as a whole.

Upvotes: 1

Yrlec
Yrlec

Reputation: 3458

You could try Math.net

Upvotes: 3

Related Questions