TrenchInverse: compute the matrix inverse of a positive-definite Toepliz...

Description Usage Arguments Value Warning Note Author(s) References See Also Examples

Description

The Trench algorithm (Golub and Vanload, 1983) is implemented in C and interfaced to R. This provides an expedient method for obtaining the matrix inverse of the covariance matrix of n successive observations from a stationary time series. Some applications of this are discussed by McLeod and Krougly (2005).

Usage

1

Arguments

G

a positive definite Toeplitz matrix

Value

the matrix inverse of G is computed

Warning

You should test the input x using is.toeplitz(x) if you are not sure if x is a symmetric Toeplitz matix.

Note

TrenchInverse(x) assumes that x is a symmetric Toeplitz matrix but it does not specifically test for this. Instead it merely takes the first row of x and passes this directly to the C code program which uses this more compact storage format. The C code program then computes the inverse. An error message is given if the C code algorithm encounters a non-positive definite input.

Author(s)

A.I. McLeod

References

Golub, G. and Van Loan (1983). Matrix Computations, 2nd Ed. John Hoptkins University Press, Baltimore. Algorithm 5.7-3.

McLeod, A.I., Yu, Hao, Krougly, Zinovi L. (2007). Algorithms for Linear Time Series Analysis, Journal of Statistical Software.

See Also

TrenchLoglikelihood, is.toeplitz, DLLoglikelihood, TrenchMean, solve

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#compute inverse of matrix and compare with result from solve
data(LakeHuron)
r<-acf(LakeHuron, plot=FALSE, lag.max=4)$acf
R<-toeplitz(c(r))
Ri<-TrenchInverse(R)
Ri2<-solve(R)
Ri
Ri2

#invert a matrix of order n and compute the maximum absolute error
# in the product of this inverse with the original matrix
n<-5	   
r<-0.8^(0:(n-1))
G<-toeplitz(r)
Gi<-TrenchInverse(G)
GGi<-crossprod(t(G),Gi)
id<-matrix(0, nrow=n, ncol=n)
diag(id)<-1
err<-max(abs(id-GGi))
err

Example output

           [,1]       [,2]      [,3]       [,4]       [,5]
[1,]  3.5612909 -3.8613321  1.391632 -0.3336078 -0.1212871
[2,] -3.8613321  7.7438121 -5.381571  1.8007409 -0.3336078
[3,]  1.3916315 -5.3815711  8.256363 -5.3815711  1.3916315
[4,] -0.3336078  1.8007409 -5.381571  7.7438121 -3.8613321
[5,] -0.1212871 -0.3336078  1.391632 -3.8613321  3.5612909
           [,1]       [,2]      [,3]       [,4]       [,5]
[1,]  3.5612909 -3.8613321  1.391632 -0.3336078 -0.1212871
[2,] -3.8613321  7.7438121 -5.381571  1.8007409 -0.3336078
[3,]  1.3916315 -5.3815711  8.256363 -5.3815711  1.3916315
[4,] -0.3336078  1.8007409 -5.381571  7.7438121 -3.8613321
[5,] -0.1212871 -0.3336078  1.391632 -3.8613321  3.5612909
[1] 8.881784e-16

ltsa documentation built on May 2, 2019, 4:01 a.m.