| inv_gft_fp | R Documentation |
Reconstructs the correlation matrix C with
\mathrm{vecl}(\log C) = z by the fixed-point
iteration of Archakov and Hansen (2021),
x \leftarrow x - \log \mathrm{diag}(e^{A[x;z]}), evaluated in the log domain throughout.
inv_gft_fp(z, x0 = NULL, tol = 1e-13, maxit = 5000)
z |
numeric vector of length |
x0 |
optional starting value of length |
tol |
convergence tolerance on
|
maxit |
maximum number of iterations. |
Globally convergent, with one eigendecomposition per iteration. The
local linear rate degrades as the spectrum of C spreads;
inv_gft switches to an inexact Newton phase precisely to
avoid this slowdown while retaining the fixed point's robustness.
An object of class "gft_inv"; see inv_gft for the
components.
Archakov, I. and Hansen, P. R. (2021). A new parametrization of correlation matrices. Econometrica, 89(4), 1699–1715. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.3982/ECTA16910")}
inv_gft.
z <- gft(0.9^abs(outer(1:5, 1:5, "-")))
r <- inv_gft_fp(z)
r$eighs
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.