mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
fb16dfecae
Commit b7f05445c0
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).
|