NAG Library Routine Document
d02uyf
(bvp_ps_lin_quad_weights)
1
Purpose
d02uyf obtains the weights for Clenshaw–Curtis quadrature at Chebyshev points. This allows for fast approximations of integrals for functions specified on Chebyshev Gauss–Lobatto points on .
2
Specification
Fortran Interface
Integer, Intent (In) | :: |
n | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (Out) | :: |
w(n+1) |
|
C Header Interface
#include nagmk26.h
void |
d02uyf_ (
const Integer *n,
double w[],
Integer *ifail) |
|
3
Description
d02uyf obtains the weights for Clenshaw–Curtis quadrature at Chebyshev points.
Given the (Clenshaw–Curtis) weights , for , and function values (where , for , are the Chebyshev Gauss–Lobatto points), then .
For a function discretized on a Chebyshev Gauss–Lobatto grid on the resultant summation must be multiplied by the factor .
4
References
Trefethen L N (2000) Spectral Methods in MATLAB SIAM
5
Arguments
- 1: – IntegerInput
-
On entry: , where the number of grid points is .
Constraint:
and
n is even.
- 2: – Real (Kind=nag_wp) arrayOutput
-
On exit: the Clenshaw–Curtis quadrature weights,
, for .
- 3: – 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, .
Constraint: .
On entry,
.
Constraint:
n is even.
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 accuracy should be close to machine precision.
8
Parallelism and Performance
d02uyf is not threaded in any implementation.
A real array of length is internally allocated.
10
Example
This example approximates the integral using Clenshaw–Curtis weights and a -point Chebyshev Gauss–Lobatto grid on .
10.1
Program Text
Program Text (d02uyfe.f90)
10.2
Program Data
Program Data (d02uyfe.d)
10.3
Program Results
Program Results (d02uyfe.r)