Invariant measures and transfer operators
Entropies.invariantmeasure
— Functioninvariantmeasure(x::AbstractDataset, ϵ::RectangularBinning) → iv::InvariantMeasure
Estimate an invariant measure over the points in x
based on binning the data into rectangular boxes dictated by the binning scheme ϵ
, then approximate the transfer (Perron-Frobenius) operator over the bins. From the approximation to the transfer operator, compute an invariant distribution over the bins. Assumes that the input data are sequential.
Details on the estimation procedure is found the TransferOperator
docstring.
Example
using DynamicalSystems, Plots, Entropies
D = 4
ds = Systems.lorenz96(D; F = 32.0)
N, dt = 20000, 0.1
orbit = trajectory(ds, N*dt; dt = dt, Ttr = 10.0)
# Estimate the invariant measure over some coarse graining of the orbit.
iv = invariantmeasure(orbit, RectangularBinning(15))
# Get the probabilities and bins
invariantmeasure(iv)
Probabilities and bin information
invariantmeasure(iv::InvariantMeasure) → (ρ::Probabilities, bins::Vector{<:SVector})
From a pre-computed invariant measure, return the probabilities and associated bins. The element ρ[i]
is the probability of visitation to the box bins[i]
. Analogous to binhist
.
Why bother with the transfer operator instead of using regular histograms to obtain probabilities?
In fact, the naive histogram approach and the transfer operator approach are equivalent in the limit of long enough time series (as $n \to \intfy$), which is guaranteed by the ergodic theorem. There is a crucial difference, however:
The naive histogram approach only gives the long-term probabilities that orbits visit a certain region of the state space. The transfer operator encodes that information too, but comes with the added benefit of knowing the transition probabilities between states (see transfermatrix
).
See also: InvariantMeasure
.
Entropies.InvariantMeasure
— TypeInvariantMeasure(to, ρ)
Minimal return struct for invariantmeasure
that contains the estimated invariant measure ρ
, as well as the transfer operator to
from which it is computed (including bin information).
See also: invariantmeasure
.
Entropies.transfermatrix
— Functiontransfermatrix(iv::InvariantMeasure) → (M::AbstractArray{<:Real, 2}, bins::Vector{<:SVector})
Return the transfer matrix/operator and corresponding bins. Here, bins[i]
corresponds to the i-th row/column of the transfer matrix. Thus, the entry M[i, j]
is the probability of jumping from the state defined by bins[i]
to the state defined by bins[j]
.
See also: TransferOperator
.