Temporal Transfer Matrix Overview
- Temporal Transfer Matrix is a representation that converts a univariate time series into a T×T image using quantile-based states and local Markov transition probabilities.
- It segments the series into K contiguous chunks to estimate local transition matrices, thereby revealing nonstationary regime changes while balancing bias and variance.
- The method is amplitude-agnostic and order-preserving, making it effective for CNN-based classification, regime detection, and anomaly analysis in time series.
Searching arXiv for recent and related uses of “Temporal Transfer Matrix” and “Temporal Markov Transition Field”. Temporal Transfer Matrix, in the sense of the Temporal Markov Transition Field (TMTF), is a temporally aware matrix representation of a univariate time series in which “transfer” and “transition” are synonymous: both denote matrices of conditional probabilities of moving between quantile-defined states. The construction extends the Markov Transition Field by partitioning the series into contiguous temporal chunks, estimating a separate local transition matrix for each chunk, and assigning each row according to the dynamics active in that row’s chunk. The resulting image exposes when regime changes occur, while remaining amplitude-agnostic and order-preserving, and is suitable as an input channel for convolutional neural networks applied to time series characterisation tasks (Leznik, 9 Mar 2026).
1. Quantile encoding and the global Markov Transition Field
Let the observed series be . Choose quantile bins, with empirical quantile boundaries such that each interval contains approximately observations, adjusting at boundaries if needed. The induced state sequence is
This encoding is amplitude-agnostic and order-preserving: any strictly increasing transformation applied to preserves ranks, thus 0 and 1 are unchanged. Increasing 2 increases resolution, but requires more data to reliably estimate transitions (Leznik, 9 Mar 2026).
The global Markov Transition Field assumes stationary transition dynamics across time. Its first-order Markov transition matrix is
3
with each row summing to 4. The corresponding image 5 is defined by
6
This global construction is efficient when transition dynamics are stationary, but it has a structural limitation. Because all transitions are pooled into a single 7, the image has at most 8 distinct row patterns: if 9, then row 0 equals row 1. The consequence is row degeneracy: the global MTF cannot reveal when dynamics change, because all time steps in the same state share the same row regardless of temporal location (Leznik, 9 Mar 2026).
2. Temporal chunking and the TMTF construction
The TMTF replaces the single global transition matrix with chunk-specific local matrices. Time indices are split into 2 contiguous, non-overlapping chunks 3 covering 4. For equal-length chunks, when 5,
6
with chunk index function 7 such that 8 (Leznik, 9 Mar 2026).
For each chunk 9, a local transition matrix is estimated using only within-chunk consecutive transitions and excluding pairs that cross chunk boundaries: 0
The temporally aware image is then
1
Only the row index is chunked: the row is governed by the local dynamics of the row’s chunk, while the column index remains the destination state 2 at time 3. This column asymmetry preserves cross-chunk comparability in columns: differences across horizontal bands reflect changing departure dynamics, not differing destinations (Leznik, 9 Mar 2026).
The image therefore exhibits 4 horizontal bands. Rows 5 share the same governing local matrix 6, and textures differ across bands if the 7 vary by segment. Rows within a band remain grouped by state 8, but TMTF can show up to 9 distinct row patterns, rather than the 0 patterns of the global MTF (Leznik, 9 Mar 2026).
3. Structural properties and statistical trade-offs
TMTF preserves several invariances and reductions inherited from quantile encoding. It is amplitude-agnostic and order-preserving, because it is invariant under strictly increasing transforms 1 of 2. It encodes first-order Markov structure, namely 3, not higher-order dependencies. It also degrades gracefully: if 4, then 5, so the temporal construction reduces exactly to the global MTF in stationary settings (Leznik, 9 Mar 2026).
Temporal chunking introduces an explicit bias–variance trade-off. Variance rises because each 6 is estimated from fewer transitions, approximately 7, with rough per-entry variance scaling
8
where 9 is the empirical frequency of state 0 in chunk 1. Bias falls when the true dynamics vary by chunk: the global 2 is biased for each segment, whereas the local 3 is unbiased within its chunk and reduces bias compared to pooling (Leznik, 9 Mar 2026).
A practical rule is to target at least 4 transitions per row on average, implying
5
For 6 and 7, 8 is reported as a robust default, for example when 9 (Leznik, 9 Mar 2026).
The computational profile is straightforward. Quantile binning is 0 if sorting is required, state sequence construction is 1, estimating all 2 local matrices is 3, assembling 4 is 5 lookups, and memory is 6. For very long series, downsampling, tiling, or low-rank approximations are suggested (Leznik, 9 Mar 2026).
4. Geometric interpretation and canonical example
The local matrices admit a direct geometric interpretation in terms of process properties. Large diagonal entries 7 indicate persistence: the process tends to remain in its current quantile band, yielding a dark main diagonal stripe within the corresponding band. Small diagonal mass with substantial off-diagonal mass indicates mean reversion and produces diffuse texture. Upper-triangular emphasis indicates trending upward, while a nearly uniform matrix corresponds to near-random behaviour in which the current state carries little information about the next (Leznik, 9 Mar 2026).
The paper’s worked example makes the contrast with the global MTF explicit. For
8
with 9, 0, and 1, the quantile state sequence is
2
The global tally over 3 consecutive transitions gives
4
which averages the mean-reverting first half and the persistent or trending second half, thereby obscuring when the regimes occurred (Leznik, 9 Mar 2026).
For TMTF with 5 and 6, the local matrices are:
| Chunk | Local transition matrix | Interpretation |
|---|---|---|
| 7 | 8 | Zero diagonal; deterministic cycle; strong mean-reversion texture |
| 9 | 0 | Large diagonal entries; strictly upper-triangular; state 3 absorbing |
The TMTF image
1
therefore shows a top band with crisp off-diagonal patterns and a bottom band with heavy diagonal and upper-triangular dominance. The horizontal texture change at 2 clearly reveals when the regime switched. The paper further notes a generative interpretation: in AR(1) terms, chunk 1 resembles 3, while chunk 2 resembles 4 with upward bias (Leznik, 9 Mar 2026).
5. Practical use, applications, and limitations
Practical design revolves mainly around choosing 5 and 6. The paper states that 7 works well for 8 in practice. Larger 9 yields finer distinctions but higher variance. Multi-resolution use is suggested: multiple TMTF channels at different 0 can balance robustness and discrimination. For 1, domain knowledge about possible regime durations is recommended, together with the minimum-transition rule 2. Cross-validation or model selection can evaluate downstream performance as a function of 3, and multi-scale chunking can combine several 4, for example 5, as separate channels (Leznik, 9 Mar 2026).
Regularization is important when chunks are small. Laplace, or add-6, smoothing is proposed: 7 Shrinkage toward the global 8 or toward a prior such as the uniform distribution is also suggested (Leznik, 9 Mar 2026).
Applications are stated in operational rather than theoretical terms. 9 can serve as a CNN input channel, and multiple channels may be stacked, for example several 00, several 01, or combinations with raw or normalized series. Listed tasks include classification, regime detection or change point analysis, stationarity characterization, and anomaly detection. Because the representation is rank-based, heavy amplitude normalization is unnecessary, although optional per-image scaling may be used for numerical stability (Leznik, 9 Mar 2026).
The main limitations are sensitivity to 02 and 03, chunk boundary effects, and the restriction to first-order dynamics. Transitions crossing chunk boundaries are excluded, so overlapping chunks or soft chunking are proposed to reduce boundary artifacts. Soft assignments through kernelized ranks are suggested to reduce discretization artifacts at quantile boundaries. Extensions mentioned in the paper include online or streaming updates, multivariate encodings by channel stacking or joint-state quantiles, higher-order Markov fields, and variable-width bins (Leznik, 9 Mar 2026).
6. Terminological scope and cross-disciplinary usage
Within the TMTF literature, “Temporal Transfer Matrix” means a matrix of conditional probabilities that transfers mass from current to next quantile-defined state, with a separate transfer matrix 04 estimated for each temporal segment. In that precise sense, the “Temporal Transfer Matrix” is the 05 TMTF image whose entries transfer probabilities from 06 to 07 under the dynamics active at time 08 (Leznik, 9 Mar 2026).
The same phrase, however, appears in several unrelated technical traditions. In optical scattering, a temporal transmission matrix is a time-resolved mapping
09
defined at discrete time bins under time-gated measurement (Guo et al., 2020). In one-dimensional scattering theory, the “temporal transfer matrix” is the truncation-dependent operator 10 satisfying
11
with 12 playing the role of an evolution parameter (Mostafazadeh, 2020). In time-varying electromagnetic media, one finds a temporal ABCD matrix acting on 13 rather than 14 (Molero et al., 19 Mar 2025), as well as temporal multilayer transfer matrices for higher-order transfer functions (Ramaccia et al., 5 Feb 2025), generalized transfer matrices for space-time modulation (Li et al., 2019), temporal T-matrix formalisms for broadband or moving scatterers (Vavilin et al., 2023), and time-modulated acoustic-waveguide transfer matrices (Cidlinsky et al., 4 Apr 2025). The label also appears in exceptional-point media (Wang et al., 3 Nov 2025), integrable Floquet circuits (Vilkoviskiy et al., 19 Aug 2025), causal dynamical triangulations (Ambjorn et al., 2012), and tensor-network treatments of quantum transfer matrices and imaginary-time propagation (Zauner et al., 2014).
This suggests that “Temporal Transfer Matrix” is not a field-invariant object but a domain-dependent designation. In the present sense, it denotes the Temporal Markov Transition Field: a chunk-local, order-preserving, amplitude-agnostic image representation for nonstationary time series that restores the missing temporal localisation of regime-dependent transition dynamics (Leznik, 9 Mar 2026).