freebsd-ports/math/py-pyneqsys/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
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)
2022-09-07 23:58:51 +02:00

15 lines
706 B
Text

pyneqsys provides a convenience class for representing and solving non-linear
equation systems from symbolic expressions (provided e.g. with the help of
SymPy).
The numerical root finding is perfomed using either:
* scipy: scipy.optimize.root
* mpmath (arbitrary precision): mpmath.calculus.optimization.MDNewton
* kinsol (from SUNDIALS): pykinsol.solve
* nleq2 (ZIB library free for academic use): pynleq2.solve
* levmar (Levenberg-Marquardt): levmar.levmar
In addition to offering a unified interface to different solvers, pyneqsys can
also derive the Jacobian analytically (when using pyneqsys.SymbolicSys). This
is useful since doing so manually is widely recognized as both tedious and error
prone.