Best .net differential equation library

I am looking for a library to solve ODE for the project of my university dissertation ... The library that I would like to find should have the following functions:

  • The calculus of events (something like a continuous calculus stopped by an internal event, like a constraint reached and other events)

  • I am using C # 4.0, so I think any library will be fine

  • Good performance

  • No $$ ^^ "

+4
source share
3 answers

What I did before is either code from Numericical Recipies , or compile dll fortran (from NETLIB ) and call it using [DllImport()] . Making a callback is a kind of hasel, but I figured it out using the examples from NAG .

They can also offer an academic version of the NAG Library for.NET

+1
source

Created a dedicated library of ODE solutions - easy to use based on the C ++ kernel Boost.OdeInt.

+5
source

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


All Articles