NAG FL Interface
d01gaf (dim1_​data)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

d01gaf integrates a function which is specified numerically at four or more points, over the whole of its specified range, using third-order finite difference formulae with error estimates, according to a method due to Gill and Miller (1972).

2 Specification

Fortran Interface
Subroutine d01gaf ( x, y, n, ans, er, ifail)
Integer, Intent (In) :: n
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: x(n), y(n)
Real (Kind=nag_wp), Intent (Out) :: ans, er
C Header Interface
#include <nag.h>
void  d01gaf_ (const double x[], const double y[], const Integer *n, double *ans, double *er, Integer *ifail)
The routine may be called by the names d01gaf or nagf_quad_dim1_data.

3 Description

d01gaf evaluates the definite integral
I = x1 xn y(x) dx ,  
where the function y is specified at the n-points x1,x2,,xn, which should be all distinct, and in either ascending or descending order. The integral between successive points is calculated by a four-point finite difference formula centred on the interval concerned, except in the case of the first and last intervals, where four-point forward and backward difference formulae respectively are employed. If n is less than 4, the routine fails. An approximation to the truncation error is integrated and added to the result. It is also returned separately to give an estimate of the uncertainty in the result. The method is due to Gill and Miller (1972).

4 References

Gill P E and Miller G F (1972) An algorithm for the integration of unequally spaced data Comput. J. 15 80–83

5 Arguments

1: x(n) Real (Kind=nag_wp) array Input
On entry: the values of the independent variable, i.e., the x1,x2,,xn.
Constraint: either x(1)<x(2)<<x(n) or x(1)>x(2)>>x(n).
2: y(n) Real (Kind=nag_wp) array Input
On entry: the values of the dependent variable yi at the points xi, for i=1,2,,n.
3: n Integer Input
On entry: n, the number of points.
Constraint: n4.
4: ans Real (Kind=nag_wp) Output
On exit: the estimated value of the integral.
5: er Real (Kind=nag_wp) Output
On exit: an estimate of the uncertainty in ans.
6: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value 0 is recommended. 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:
Note: no error is reported arising from the relative magnitudes of ans and er on return, due to the difficulty when the true answer is zero.
ifail=1
On entry, n=value.
Constraint: n4.
ifail=2
On entry, x(1)=value and x(2)=value, x(I-1)=value, x(I)=value and I=value.
Constraint: either x(1)<x(2)<<x(n) or x(1)>x(2)>>x(n).
ifail=3
On entry, I=value, x(I)=value and x(I-1)=value.
Constraint: x(I)x(I-1).
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

No accuracy level is specified by you before calling d01gaf but on return the absolute value of er is an approximation to, but not necessarily a bound for, |I-ans|. If on exit ifail>0, both ans and er are returned as zero.

8 Parallelism and Performance

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

The time taken by d01gaf depends on the number of points supplied, n.
In their paper, Gill and Miller (1972) do not add the quantity er to ans before return. However, extensive tests have shown that a dramatic reduction in the error often results from such addition. In other cases, it does not make an improvement, but these tend to be cases of low accuracy in which the modified answer is not significantly inferior to the unmodified one. You have the option of recovering the Gill–Miller answer by subtracting er from ans on return from the routine.

10 Example

This example evaluates the integral
01 4 1+x2 dx = π  
reading in the function values at 21 unequally spaced points.

10.1 Program Text

Program Text (d01gafe.f90)

10.2 Program Data

Program Data (d01gafe.d)

10.3 Program Results

Program Results (d01gafe.r)