문제

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