Question

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 internal 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 $$ ^^"

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top