Km {DCCA} | R Documentation |
Matrix K
Description
This is an auxiliary function which computes expression (18) in Prass and Pumi (2019). It creates an by
matrix defined by
where
is a
by
lower triangular matrix with all non-zero entries equal to one and
is a
by
given by
where
is the projection matrix into the subspace generated by degree
polynomials and
is the
by
identity matrix.
Usage
Km(m = 3, nu = 0, J = NULL, Q = NULL)
Arguments
m |
a positive integer greater or equal than |
nu |
a non-negative integer denoting the degree of the polinomial fit applied on the integrated series. |
J , Q |
optional: the matrices such that |
Value
an by
matrix corresponding to expression (18) in Prass and Pumi (2019).
Author(s)
Taiane Schaedler Prass
References
Prass, T.S. and Pumi, G. (2019). On the behavior of the DFA and DCCA in trend-stationary processes <arXiv:1910.10589>.
See Also
Jn
which creates the matrix ,
Qm
which creates and
Pm
which creates .
Examples
K = Km(m = 3, nu = 0)
K
# same as
m = 3
J = Jn(n = m+1)
Q = Qm(m = m, nu = 0)
K = Km(J = J, Q = Q)
K