InvWavTransf2D {pdSpecEst} | R Documentation |
Inverse AI wavelet transform for surface of HPD matrices
Description
InvWavTransf2D
computes the inverse intrinsic average-interpolation (AI) wavelet
transform mapping an array of coarsest-scale HPD midpoints combined with a 2D pyramid of Hermitian
wavelet coefficients to a surface in the manifold of HPD matrices equipped with a metric specified by the
user, as described in Chapter 5 of (Chau 2018). This is the inverse operation of the
function WavTransf2D
.
Usage
InvWavTransf2D(D, M0, order = c(3, 3), jmax, metric = "Riemannian",
...)
Arguments
D |
a list of arrays containing the 2D pyramid of wavelet coefficients, where each array contains the
( |
M0 |
a numeric array containing the midpoint(s) at the coarsest scale |
order |
a 2-dimensional numeric vector |
jmax |
the maximum scale (resolution) up to which the 2D surface of HPD midpoints (i.e. scaling coefficients) are
reconstructed. If |
metric |
the metric that the space of HPD matrices is equipped with. The default choice is |
... |
additional arguments for internal use. |
Details
The input list of arrays D
and array M0
correspond to a 2D pyramid of wavelet coefficients and
the coarsest-scale HPD midpoints respectively, both are structured in the same way as in the output of
WavTransf2D
. As in the forward AI wavelet transform, the marginal refinement orders should be smaller
or equal to 9, and the function computes the wavelet transform using a fast wavelet refinement scheme based on weighted
intrinsic averages with pre-determined weights as explained in Chapter 5 of (Chau 2018). By default
WavTransf2D
computes the inverse intrinsic 2D AI wavelet transform equipping the space of HPD matrices with (i)
the affine-invariant Riemannian metric as detailed in e.g., (Bhatia 2009)[Chapter 6] or (Pennec et al. 2006).
Instead, the space of HPD matrices can also be equipped with one of the following metrics; (ii) the Log-Euclidean metric, the
Euclidean inner product between matrix logarithms; (iii) the Cholesky metric, the Euclidean inner product between Cholesky
decompositions; (iv) the Euclidean metric and (v) the root-Euclidean metric. The default choice of metric (affine-invariant Riemannian)
satisfies several useful properties not shared by the other metrics, see (Chau 2018) for more details. Note that this
comes at the cost of increased computation time in comparison to one of the other metrics.
Value
Returns a (d, d, n_1, n_2
)-dimensional array corresponding to a rectangular surface of size n_1
by
n_2
of (d,d
)-dimensional HPD matrices.
References
Bhatia R (2009).
Positive Definite Matrices.
Princeton University Press, New Jersey.
Chau J (2018).
Advances in Spectral Analysis for Multivariate, Nonstationary and Replicated Time Series.
phdthesis, Universite catholique de Louvain.
Pennec X, Fillard P, Ayache N (2006).
“A Riemannian framework for tensor computing.”
International Journal of Computer Vision, 66(1), 41–66.
See Also
WavTransf2D
, pdSpecEst2D
, pdNeville
Examples
P <- rExamples2D(c(2^4, 2^4), 2, example = "tvar")
P.wt <- WavTransf2D(P$f) ## forward transform
P.f <- InvWavTransf2D(P.wt$D, P.wt$M0) ## backward transform
all.equal(P.f, P$f)