ltzd: Value of quadratic forms for the inverse of a symmetric...

View source: R/ltzd.R

ltzdR Documentation

Value of quadratic forms for the inverse of a symmetric positive definite autocorrelation matrix.

Description

The function ltzd is used to calculate the value of quadratic forms for the inverse of a symmetric positive definite autocorrelation matrix, using the Levinson algorithm (Golub and Van Loan 1996, Algorithm 4.7.2).

Usage

ltzd(r, x)

Arguments

r

autocorelation vector

x

time series data

Value

A numeric value t(x) * solve(R) * x. t(.) denotes the transpose of a vector and R is the autocorrelation matrix.

Author(s)

Hristos Tyralis

References

Golub GH, Van Loan CF (1996) Matrix Computations. Baltimore: John Hopkins University Press.

Examples

# Estimate the parameters for the Nile time series.

r <- acfHKp(H = 0.8, maxlag = length(Nile) - 1)

examp <- ltzd(r, Nile)

# Comparison of the algorithm with typical approaches

examp - as.numeric(t(Nile) %*% solve(toeplitz(r)) %*% Nile)

HKprocess documentation built on Oct. 27, 2022, 1:06 a.m.

Related to ltzd in HKprocess...