Learn R Programming

dbacf (version 0.2.8)

projectToeplitz: Projection onto the set of symmetric Toeplitz matrices

Description

Computes the orthogonal projection onto the space of symmetric Toeplitz matrices as given in Grigoriadis et al. (1994).

Usage

projectToeplitz(matrix)

Value

The computed projection matrix.

Arguments

matrix

a symmetric matrix.

References

Grigoriadis, K.M., Frazho, A., Skelton, R. (1994). Application of alternating convex projection methods for computation of positive Toeplitz matrices, IEEE Transactions on signal processing 42(7), 1873--1875

See Also

nearPDToeplitz

Examples

Run this code
 
A <- matrix(c(2, 1, 1, 1, 2, 0, 1, 0, 0), byrow = 3, nrow = 3)
projectToeplitz(A)
 

Run the code above in your browser using DataLab