mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-06 11:41:52 +00:00
![Stefan Eßer](/assets/img/avatar_default.png)
Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
13 lines
558 B
Plaintext
13 lines
558 B
Plaintext
pyodeint provides a Python binding to odeint. Currently, the following steppers
|
|
are exposed:
|
|
* rosenbrock4: 4th order Rosenbrock (implicit multistep) stepper
|
|
* dopri5: 5th order DOPRI5 (explicit runge-kutta)
|
|
* bs: Bulirsch-Stoer stepper (modified midpoint rule).
|
|
|
|
The Rosenbrock4 stepper requires that the user provides a routine for
|
|
calculating the Jacobian.
|
|
|
|
You may also want to know that you can use pyodeint from pyodesys which can e.g.
|
|
derive the Jacobian analytically for you (pyodesys also provides plotting
|
|
functions, C++ code-generation and more).
|