Compute numerical derivatives.
Project description
Fast numerical derivatives for real analytic functions with arbitrary round-off error.
Click here for full documentation.
Features
Robustly compute the generalised Jacobi matrix for an arbitrary real analytic mapping ℝⁿ → ℝⁱ¹ × … × ℝⁱⁿ
Derivative is either computed to specified accuracy (to save computing time) or until maximum precision of function is reached
Algorithm based on John D’Errico’s DERIVEST: works even with functions that have large round-off error
Up to 1000x faster than numdifftools at equivalent precision
Returns error estimates for derivatives
Supports arbitrary auxiliary function arguments
Perform statistical error propagation based on numerically computed jacobian
Lightweight package, only depends on numpy
Planned features
Compute the Hessian matrix numerically with the same algorithm
Further generalize the calculation to support function arguments with shape (N, K), in that case compute the Jacobi matrix for each of the K vectors of length N
Examples
from matplotlib import pyplot as plt
import numpy as np
from jacobi import jacobi
# function of one variable with auxiliary argument; returns a vector
def f(x):
return np.sin(x) / x
x = np.linspace(-10, 10, 200)
fx = f(x)
# f(x) is a simple vectorized function, jacobian is diagonal
fdx, fdxe = jacobi(f, x, diagonal=True)
# fdxe is uncertainty estimate for derivative
plt.plot(x, fx, color="k", label="$f(x) = sin(x) / x$")
plt.plot(x, fdx, label="$f'(x)$ computed with jacobi")
scale = 14
plt.fill_between(
x,
fdx - fdxe * 10**scale,
fdx + fdxe * 10**scale,
label=f"$f'(x)$ error estimate$\\times \\, 10^{{{scale}}}$",
facecolor="C0",
alpha=0.5,
)
plt.legend()
from jacobi import propagate
import numpy as np
from scipy.special import gamma
# arbitrarily complex function that calls compiled libraries, numba-jitted code, etc.
def fn(x):
r = np.empty(3)
r[0] = 1.5 * np.exp(-x[0] ** 2)
r[1] = gamma(x[1] ** 3.1)
r[2] = np.polyval([1, 2, 3], x[0])
return r # x and r have different lengths
# fn accepts a parameter vector x, which has an associated covariance matrix xcov
x = [1.0, 2.0]
xcov = [[1.1, 0.1], [0.1, 2.3]]
y, ycov = propagate(fn, x, xcov) # y=f(x) and ycov = J xcov J^T
Comparison to numdifftools
Speed
Jacobi makes better use of vectorized computation than numdifftools and converges rapidly if the derivative is trivial. This leads to a dramatic speedup in some cases.
Smaller run-time is better (and ratio > 1).
Precision
The machine precision is indicated by the dashed line. Jacobi is comparable in accuracy to numdifftools. The error estimate has the right order of magnitude but slightly underestimates the true deviation. This does not matter for most applications.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file jacobi-0.7.0.tar.gz
.
File metadata
- Download URL: jacobi-0.7.0.tar.gz
- Upload date:
- Size: 996.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a39932428ff4c521a5bb78e9b95b4909c2855342cde7d2735245e9c6f0ce91af |
|
MD5 | a35775137d89bb92c86c4ba63f8534a2 |
|
BLAKE2b-256 | e9f904246c86dbef72549c5c9233f8e1aaccb569c8ad8c4d471f4c6b4235f3da |
File details
Details for the file jacobi-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: jacobi-0.7.0-py3-none-any.whl
- Upload date:
- Size: 10.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 369c02bd99c8e658cbcd1673a537f87ae9e54e750c77e3a1da4c3322a71fad5b |
|
MD5 | 7e88b6eb9d73a1acb9b00166234828e3 |
|
BLAKE2b-256 | 2825bb17f18c2ce2d5089a8d757e53eeb0c9d685f3197994b67fdb993bbb66b5 |