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

有帮助吗?

解决方案

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

其他提示

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top