Best Free Ordinary Differential Equation Library in .net [closed]
I'm looking for a library to solve ODE for my university thesis' project... The library I'd like to find had to have this features:
Event Calculus (something like a continuous calculus stopped by int开发者_开发问答ernal event, like constraint reached and other events)
I'm using C# 4.0 so i think any library will be ok
Have good performance
No $$ ^^"
Created a dedicated ODE solving library - simple to use based on C++ Boost.OdeInt core.
What I have done before is either code in something from Numerical Recipies or compile a fortran dll (from NETLIB for example) and call it using [DllImport()]
. Doing a call back is kind of a hasle, but I figured it out using the examples from NAG.
Also they may offer an academic version of NAG Library for.NET
Looks like people on SO like MATLAB from .NET http://www.mathworks.com/products/netbuilder/
Also, Math.NET.
Sources:
- Solving partial differential equations using C#
- https://stackoverflow.com/questions/1387430/recommended-math-library-for-c-net
精彩评论