toeplitz_inverse


toeplitz_inverse, an Octave code which computes the inverse of a Toeplitz matrix.

A Toeplitz matrix is a matrix which is constant along all diagonals. A schematic of a 5x5 symmetric toeplitz matrix would be:

        e  f  g  h  i
        d  e  f  g  h
        c  d  e  f  g
        b  c  d  e  f
        a  b  c  d  e
      

Licensing:

The computer code and data files made available on this web page are distributed under the MIT license

Languages:

toeplitz_inverse is available in a MATLAB version and an Octave version and a Python version.

Related Data and Programs:

toeplitz_inverse_test

hankel_inverse, an Octave code which computes the inverse of a Hankel matrix.

toeplitz_cholesky, an Octave code which computes the Cholesky factorization of a symmetric positive definite (SPD) Toeplitz matrix.

Reference:

  1. Miroslav Fiedler,
    toeplitz and Loewner Matrices

Source Code:


Last modified on 30 May 2023.