NAG Library Routine Document

g05zmf (field_1d_user_setup)

1
Purpose

g05zmf performs the setup required in order to simulate stationary Gaussian random fields in one dimension, for a user-defined variogram, using the circulant embedding method. Specifically, the eigenvalues of the extended covariance matrix (or embedding matrix) are calculated, and their square roots output, for use by g05zpf, which simulates the random field.

2
Specification

Fortran Interface
Subroutine g05zmf ( ns, xmin, xmax, maxm, var, cov1, pad, icorr, lam, xx, m, approx, rho, icount, eig, iuser, ruser, ifail)
Integer, Intent (In):: ns, maxm, pad, icorr
Integer, Intent (Inout):: iuser(*), ifail
Integer, Intent (Out):: m, approx, icount
Real (Kind=nag_wp), Intent (In):: xmin, xmax, var
Real (Kind=nag_wp), Intent (Inout):: ruser(*)
Real (Kind=nag_wp), Intent (Out):: lam(maxm), xx(ns), rho, eig(3)
External:: cov1
C Header Interface
#include <nagmk26.h>
void  g05zmf_ (const Integer *ns, const double *xmin, const double *xmax, const Integer *maxm, const double *var,
void (NAG_CALL *cov1)(const double *x, double *gamma, Integer iuser[], double ruser[]),
const Integer *pad, const Integer *icorr, double lam[], double xx[], Integer *m, Integer *approx, double *rho, Integer *icount, double eig[], Integer iuser[], double ruser[], Integer *ifail)

3
Description

A one-dimensional random field Zx in  is a function which is random at every point x, so Zx is a random variable for each x. The random field has a mean function μx=𝔼Zx and a symmetric positive semidefinite covariance function Cx,y=𝔼Zx-μxZy-μy. Zx is a Gaussian random field if for any choice of n and x1,,xn, the random vector Zx1,,ZxnT follows a multivariate Normal distribution, which would have a mean vector μ~ with entries μ~i=μxi and a covariance matrix C~ with entries C~ij=Cxi,xj. A Gaussian random field Zx is stationary if μx is constant for all x and Cx,y=Cx+a,y+a for all x,y,a and hence we can express the covariance function Cx,y as a function γ of one variable: Cx,y=γx-y. γ is known as a variogram (or more correctly, a semivariogram) and includes the multiplicative factor σ2 representing the variance such that γ0=σ2.
The routines g05zmf and g05zpf are used to simulate a one-dimensional stationary Gaussian random field, with mean function zero and variogram γx, over an interval xmin,xmax, using an equally spaced set of N points on the interval. The problem reduces to sampling a Normal random vector X of size N, with mean vector zero and a symmetric Toeplitz covariance matrix A. Since A is in general expensive to factorize, a technique known as the circulant embedding method is used. A is embedded into a larger, symmetric circulant matrix B of size M2N-1, which can now be factorized as B=WΛW*=R*R, where W is the Fourier matrix (W* is the complex conjugate of W), Λ is the diagonal matrix containing the eigenvalues of B and R=Λ12W*. B is known as the embedding matrix. The eigenvalues can be calculated by performing a discrete Fourier transform of the first row (or column) of B and multiplying by M, and so only the first row (or column) of B is needed – the whole matrix does not need to be formed.
As long as all of the values of Λ are non-negative (i.e., B is positive semidefinite), B is a covariance matrix for a random vector Y, two samples of which can now be simulated from the real and imaginary parts of R*U+iV, where U and V have elements from the standard Normal distribution. Since R*U+iV=WΛ12U+iV, this calculation can be done using a discrete Fourier transform of the vector Λ12U+iV. Two samples of the random vector X can now be recovered by taking the first N elements of each sample of Y – because the original covariance matrix A is embedded in B, X will have the correct distribution.
If B is not positive semidefinite, larger embedding matrices B can be tried; however if the size of the matrix would have to be larger than maxm, an approximation procedure is used. We write Λ=Λ++Λ-, where Λ+ and Λ- contain the non-negative and negative eigenvalues of B respectively. Then B is replaced by ρB+ where B+=WΛ+W* and ρ0,1 is a scaling factor. The error ε in approximating the distribution of the random field is given by
ε= 1-ρ 2 traceΛ + ρ2 traceΛ- M .  
Three choices for ρ are available, and are determined by the input argument icorr:
g05zmf finds a suitable positive semidefinite embedding matrix B and outputs its size, m, and the square roots of its eigenvalues in lam. If approximation is used, information regarding the accuracy of the approximation is output. Note that only the first row (or column) of B is actually formed and stored.

4
References

Dietrich C R and Newsam G N (1997) Fast and exact simulation of stationary Gaussian processes through circulant embedding of the covariance matrix SIAM J. Sci. Comput. 18 1088–1107
Schlather M (1999) Introduction to positive definite functions and to unconditional simulation of random fields Technical Report ST 99–10 Lancaster University
Wood A T A and Chan G (1994) Simulation of stationary Gaussian processes in 0,1d Journal of Computational and Graphical Statistics 3(4) 409–432

5
Arguments

1:     ns – IntegerInput
On entry: the number of sample points to be generated in realizations of the random field.
Constraint: ns1.
2:     xmin – Real (Kind=nag_wp)Input
On entry: the lower bound for the interval over which the random field is to be simulated.
Constraint: xmin<xmax.
3:     xmax – Real (Kind=nag_wp)Input
On entry: the upper bound for the interval over which the random field is to be simulated.
Constraint: xmin<xmax.
4:     maxm – IntegerInput
On entry: the maximum size of the circulant matrix to use. For example, if the embedding matrix is to be allowed to double in size three times before the approximation procedure is used, then choose maxm = 2k+2  where k = 1+ log2ns-1 .
Suggested value: 2k+2​ where ​ k = 1+ log2ns-1 .
Constraint: maxm 2 k , where k is the smallest integer satisfying 2 k 2 ns-1 .
5:     var – Real (Kind=nag_wp)Input
On entry: the multiplicative factor σ2 of the variogram γx.
Constraint: var0.0.
6:     cov1 – Subroutine, supplied by the user.External Procedure
cov1 must evaluate the variogram γx, without the multiplicative factor σ2, for all x0. The value returned in gamma is multiplied internally by var.
The specification of cov1 is:
Fortran Interface
Subroutine cov1 ( x, gamma, iuser, ruser)
Integer, Intent (Inout):: iuser(*)
Real (Kind=nag_wp), Intent (In):: x
Real (Kind=nag_wp), Intent (Inout):: ruser(*)
Real (Kind=nag_wp), Intent (Out):: gamma
C Header Interface
#include <nagmk26.h>
void  cov1 (const double *x, double *gamma, Integer iuser[], double ruser[])
1:     x – Real (Kind=nag_wp)Input
On entry: the value x at which the variogram γx is to be evaluated.
2:     gamma – Real (Kind=nag_wp)Output
On exit: the value of the variogram γx σ2 .
3:     iuser* – Integer arrayUser Workspace
4:     ruser* – Real (Kind=nag_wp) arrayUser Workspace
cov1 is called with the arguments iuser and ruser as supplied to g05zmf. You should use the arrays iuser and ruser to supply information to cov1.
cov1 must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which g05zmf is called. Arguments denoted as Input must not be changed by this procedure.
Note: cov1 should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by g05zmf. If your code inadvertently does return any NaNs or infinities, g05zmf is likely to produce unexpected results.
7:     pad – IntegerInput
On entry: determines whether the embedding matrix is padded with zeros, or padded with values of the variogram. The choice of padding may affect how big the embedding matrix must be in order to be positive semidefinite.
pad=0
The embedding matrix is padded with zeros.
pad=1
The embedding matrix is padded with values of the variogram.
Suggested value: pad=1.
Constraint: pad=0 or 1.
8:     icorr – IntegerInput
On entry: determines which approximation to implement if required, as described in Section 3.
Suggested value: icorr=0.
Constraint: icorr=0, 1 or 2.
9:     lammaxm – Real (Kind=nag_wp) arrayOutput
On exit: contains the square roots of the eigenvalues of the embedding matrix.
10:   xxns – Real (Kind=nag_wp) arrayOutput
On exit: the points at which values of the random field will be output.
11:   m – IntegerOutput
On exit: the size of the embedding matrix.
12:   approx – IntegerOutput
On exit: indicates whether approximation was used.
approx=0
No approximation was used.
approx=1
Approximation was used.
13:   rho – Real (Kind=nag_wp)Output
On exit: indicates the scaling of the covariance matrix. rho=1.0 unless approximation was used with icorr=0 or 1.
14:   icount – IntegerOutput
On exit: indicates the number of negative eigenvalues in the embedding matrix which have had to be set to zero.
15:   eig3 – Real (Kind=nag_wp) arrayOutput
On exit: indicates information about the negative eigenvalues in the embedding matrix which have had to be set to zero. eig1 contains the smallest eigenvalue, eig2 contains the sum of the squares of the negative eigenvalues, and eig3 contains the sum of the absolute values of the negative eigenvalues.
16:   iuser* – Integer arrayUser Workspace
17:   ruser* – Real (Kind=nag_wp) arrayUser Workspace
iuser and ruser are not used by g05zmf, but are passed directly to cov1 and may be used to pass information to this routine.
18:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. 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 -1 or 1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, ns=value.
Constraint: ns1.
ifail=2
On entry, xmin=value and xmax=value.
Constraint: xmin<xmax.
ifail=4
On entry, maxm=value.
Constraint: the minimum calculated value for maxm is value.
Where the minimum calculated value is given by 2 k , where k is the smallest integer satisfying 2 k 2 ns-1 .
ifail=5
On entry, var=value.
Constraint: var0.0.
ifail=7
On entry, pad=value.
Constraint: pad=0 or 1.
ifail=8
On entry, icorr=value.
Constraint: icorr=0, 1 or 2.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

If on exit approx=1, see the comments in Section 3 regarding the quality of approximation; increase the value of maxm to attempt to avoid approximation.

8
Parallelism and Performance

g05zmf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g05zmf 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.

9
Further Comments

None.

10
Example

This example calls g05zmf to calculate the eigenvalues of the embedding matrix for 8 sample points of a random field characterized by the symmetric stable variogram:
γx = σ2 exp - x ν ,  
where x=x, and  and ν are parameters.
It should be noted that the symmetric stable variogram is one of the pre-defined variograms available in g05znf. It is used here purely for illustrative purposes.

10.1
Program Text

Program Text (g05zmfe.f90)

10.2
Program Data

Program Data (g05zmfe.d)

10.3
Program Results

Program Results (g05zmfe.r)