Reputation: 1278
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
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