NAG Library Routine Document
f04mef
(real_toeplitz_yule_update)
1
Purpose
f04mef updates the solution to the Yule–Walker equations for a real symmetric positive definite Toeplitz system.
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
n | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
t(0:n) | Real (Kind=nag_wp), Intent (Inout) | :: |
x(*),
v | Real (Kind=nag_wp), Intent (Out) | :: |
work(n-1) |
|
C Header Interface
#include nagmk26.h
void |
f04mef_ (
const Integer *n,
const double t[],
double x[],
double *v,
double work[],
Integer *ifail) |
|
3
Description
f04mef solves the equations
where
is the
by
symmetric positive definite Toeplitz matrix
and
is the vector
given the solution of the equations
The 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
f04fef may be called. This routine uses the method of Durbin (see
Durbin (1960) 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
Durbin J (1960) The fitting of time series models Rev. Inst. Internat. Stat. 28 233
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
5
Arguments
- 1: – IntegerInput
-
On entry: the order of the Toeplitz matrix .
Constraint:
. When , an immediate return is effected.
- 2: – Real (Kind=nag_wp) arrayInput
-
On entry:
must contain the value
of the diagonal elements of
, and the remaining
n elements of
t must contain the elements of the vector
.
Constraint:
. Note that if this is not true, the Toeplitz matrix cannot be positive definite.
- 3: – 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 f04mef. The element need not be specified.
Constraint:
. Note that this is the partial (auto)correlation coefficient, or reflection coefficient, for the th step. If the constraint does not hold, cannot be positive definite.
On exit: the solution vector . The element returns the partial (auto)correlation coefficient, or reflection coefficient, for the th step. If , the matrix will not be positive definite to working accuracy.
- 4: – Real (Kind=nag_wp)Input/Output
-
On entry: with the mean square prediction error for the ()th step, as returned by a previous call to f04mef.
On exit: the mean square prediction error, or predictor error variance ratio,
, for the
th step. (See
Section 9 and the Introduction to
Chapter G13.)
- 5: – Real (Kind=nag_wp) arrayWorkspace
-
- 6: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation 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 argument, 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:
-
On entry, | , |
or | , |
or | and . |
-
The Toeplitz matrix
is not positive definite to working accuracy. If, on exit,
is close to unity, then the principal minor was probably close to being singular, and the sequence
may be a valid sequence nevertheless.
x returns the solution of the equations
and
v returns
, but it may not be positive.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
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
th element of
. This bound is almost certainly pessimistic, but it has not yet been established whether or not the method of Durbin is backward stable. For further information on stability issues see
Bunch (1985),
Bunch (1987),
Cybenko (1980) and
Golub and Van Loan (1996). The following bounds on
hold:
where
is the mean square prediction error for the
th step. (See
Cybenko (1980).) Note that
. The norm of
may also be estimated using routine
f04ydf.
8
Parallelism and Performance
f04mef makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The number of floating-point operations used by this routine is approximately .
The mean square prediction errors,
, is defined as
Note that
.
10
Example
This example finds the solution of the Yule–Walker equations
,
where
10.1
Program Text
Program Text (f04mefe.f90)
10.2
Program Data
Program Data (f04mefe.d)
10.3
Program Results
Program Results (f04mefe.r)