Python Package for Stochastic Interpolation via multipoint fractional Brownian bridges
Project description
A python package for stochastic interpolation of sparse or incomplete time series by fractional Brownian motion.
For further references, see: J. Friedrich, S. Gallon, A. Pumir, and R. Grauer, Phys. Rev. Lett. 125, 170602 (2020).
Installation
The fBb package is available on pypi and can be installed using pip
pip install fBb
How to use this package
Stochastic interpolation
To use fBb to interpolate sparse measurement points X_i at times t_i import the multipoint fractional Brownian bridge process with the desired Hurst parameter H and the desired resolution of the interpolation N_fine.
from fBb import MFBB
mfbb = MFBB(X_i, t_i, H, N_fine)
X_bridge = mfbb.bridge()
t_bridge = mfbb.t_fine()
plt.scatter(t_i, X_i)
plt.plot(t_bridge, X_bridge)
plt.show()
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
File details
Details for the file fBb-0.1.11.tar.gz
.
File metadata
- Download URL: fBb-0.1.11.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ab9a555768aefd9f8fb104633b787e4465f7df1553d4eb67de4815658a364a2 |
|
MD5 | 17a678852202bf1d6bfc13235f78cefc |
|
BLAKE2b-256 | 49993b7bd9b5933a33080a5f2a202a77fa0be063f3f0e53cfedbe0b42d9c19b0 |