NAG Library Routine Document
F04MFF
1 Purpose
F04MFF updates the solution of the equations , where is a real symmetric positive definite Toeplitz matrix.
2 Specification
INTEGER |
N, IFAIL |
REAL (KIND=nag_wp) |
T(0:*), B(*), X(*), P, WORK(*) |
|
3 Description
F04MFF solves the equations
where
is the
by
symmetric positive definite Toeplitz matrix
and
is the
-element vector
, given the solution of the equations
This routine will normally be used to successively solve the equations
If it is desired to solve the equations for a single value of
, then routine
F04FFF may be called. This routine uses the method of Levinson (see
Levinson (1947) and
Golub and Van Loan (1996)).
4 References
Bunch J R (1985) Stability of methods for solving Toeplitz systems of equations SIAM J. Sci. Statist. Comput. 6 349–364
Bunch J R (1987) The weak and strong stability of algorithms in numerical linear algebra Linear Algebra Appl. 88/89 49–66
Cybenko G (1980) The numerical stability of the Levinson–Durbin algorithm for Toeplitz systems of equations SIAM J. Sci. Statist. Comput. 1 303–319
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Levinson N (1947) The Weiner RMS error criterion in filter design and prediction J. Math. Phys. 25 261–278
5 Parameters
- 1: N – INTEGERInput
On entry: the order of the Toeplitz matrix .
Constraint:
. When , then an immediate return is effected.
- 2: T() – REAL (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
T
must be at least
.
On entry: must contain the values , .
Constraint:
. Note that if this is not true, then the Toeplitz matrix cannot be positive definite.
- 3: B() – REAL (KIND=nag_wp) arrayInput
-
Note: the dimension of the array
B
must be at least
.
On entry: the right-hand side vector .
- 4: X() – REAL (KIND=nag_wp) arrayInput/Output
-
Note: the dimension of the array
X
must be at least
.
On entry: with the () elements of the solution vector as returned by a previous call to F04MFF. The element need not be specified.
On exit: the solution vector .
- 5: P – REAL (KIND=nag_wp)Output
On exit: the reflection coefficient
. (See
Section 8.)
- 6: WORK() – REAL (KIND=nag_wp) arrayInput/Output
-
Note: the dimension of the array
WORK
must be at least
.
On entry: with
the elements of
WORK should be as returned from a previous call to F04MFF with (
) as the parameter
N.
On exit: the first (
) elements of
WORK contain the solution to the Yule–Walker equations
where
.
- 7: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is
.
When the value is used it is essential to test the value of IFAIL on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
The Toeplitz matrix
is not positive definite to working accuracy. If, on exit,
P is close to unity, then
was probably close to being singular.
7 Accuracy
The computed solution of the equations certainly satisfies
where
is approximately bounded by
being a modest function of
,
being the
machine precision and
being the condition number of
with respect to inversion. This bound is almost certainly pessimistic, but it seems unlikely that the method of Levinson is backward stable, so caution should be exercised when
is ill-conditioned. The following bound on
holds:
(See
Golub and Van Loan (1996).) The norm of
may also be estimated using routine
F04YDF. For further information on stability issues see
Bunch (1985),
Bunch (1987),
Cybenko (1980) and
Golub and Van Loan (1996).
The number of floating point operations used by this routine is approximately .
If
is the solution of the equations
then the reflection coefficient
is defined as the
th element of
.
9 Example
This example finds the solution of the equations
,
, where
9.1 Program Text
Program Text (f04mffe.f90)
9.2 Program Data
Program Data (f04mffe.d)
9.3 Program Results
Program Results (f04mffe.r)