NAG FL Interface
e02dhf (dim2_​spline_​derivm)

1 Purpose

e02dhf computes the partial derivative (of order νx, νy), of a bicubic spline approximation to a set of data values, from its B-spline representation, at points on a rectangular grid in the x-y plane. This routine may be used to calculate derivatives of a bicubic spline given in the form produced by e01daf, e02daf, e02dcf and e02ddf.

2 Specification

Fortran Interface
Subroutine e02dhf ( mx, my, px, py, x, y, lamda, mu, c, nux, nuy, z, ifail)
Integer, Intent (In) :: mx, my, px, py, nux, nuy
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: x(mx), y(my), lamda(px), mu(py), c((px-4)*(py-4))
Real (Kind=nag_wp), Intent (Out) :: z(mx*my)
C Header Interface
#include <nag.h>
void  e02dhf_ (const Integer *mx, const Integer *my, const Integer *px, const Integer *py, const double x[], const double y[], const double lamda[], const double mu[], const double c[], const Integer *nux, const Integer *nuy, double z[], Integer *ifail)
The routine may be called by the names e02dhf or nagf_fit_dim2_spline_derivm.

3 Description

e02dhf determines the partial derivative νx + νy x νx y νy of a smooth bicubic spline approximation sx,y at the set of data points xq,yr.
The spline is given in the B-spline representation
sx,y = i=1 nx-4 j=1 ny-4 cij Mix Njy , (1)
where Mix and Njy denote normalized cubic B-splines, the former defined on the knots λi to λi+4 and the latter on the knots μj to μj+4, with nx and ny the total numbers of knots of the computed spline with respect to the x and y variables respectively. For further details, see Hayes and Halliday (1974) for bicubic splines and de Boor (1972) for normalized B-splines. This routine is suitable for B-spline representations returned by e01daf, e02daf, e02dcf and e02ddf.
The partial derivatives can be up to order 2 in each direction; thus the highest mixed derivative available is 4 x2 y2 .
The points in the grid are defined by coordinates xq, for q=1,2,,mx, along the x axis, and coordinates yr, for r=1,2,,my, along the y axis.

4 References

de Boor C (1972) On calculating with B-splines J. Approx. Theory 6 50–62
Dierckx P (1981) An improved algorithm for curve fitting with spline functions Report TW54 Department of Computer Science, Katholieke Univerciteit Leuven
Dierckx P (1982) A fast algorithm for smoothing data on a rectangular grid while using spline functions SIAM J. Numer. Anal. 19 1286–1304
Hayes J G and Halliday J (1974) The least squares fitting of cubic spline surfaces to general data sets J. Inst. Math. Appl. 14 89–103
Reinsch C H (1967) Smoothing by spline functions Numer. Math. 10 177–183

5 Arguments

1: mx Integer Input
On entry: mx, the number of grid points along the x axis.
Constraint: mx1.
2: my Integer Input
On entry: my, the number of grid points along the y axis.
Constraint: my1.
3: px Integer Input
On entry: the total number of knots in the x-direction of the bicubic spline approximation, e.g., the value nx as returned by e02dcf.
4: py Integer Input
On entry: the total number of knots in the y-direction of the bicubic spline approximation, e.g., the value ny as returned by e02dcf.
5: xmx Real (Kind=nag_wp) array Input
On entry: xq must be set to xq, the x coordinate of the qth grid point along the x axis, for q=1,2,,mx, on which values of the partial derivative are sought.
Constraint: x1<x2<<xmx.
6: ymy Real (Kind=nag_wp) array Input
On entry: yr must be set to yr, the y coordinate of the rth grid point along the y axis, for r=1,2,,my on which values of the partial derivative are sought.
Constraint: y1<y2<<ymy.
7: lamdapx Real (Kind=nag_wp) array Input
On entry: contains the position of the knots in the x-direction of the bicubic spline approximation to be differentiated, e.g., lamda as returned by e02dcf.
8: mupy Real (Kind=nag_wp) array Input
On entry: contains the position of the knots in the y-direction of the bicubic spline approximation to be differentiated, e.g., mu as returned by e02dcf.
9: cpx-4×py-4 Real (Kind=nag_wp) array Input
On entry: the coefficients of the bicubic spline approximation to be differentiated, e.g., c as returned by e02dcf.
10: nux Integer Input
On entry: specifies the order, νx of the partial derivative in the x-direction.
Constraint: 0nux2.
11: nuy Integer Input
On entry: specifies the order, νy of the partial derivative in the y-direction.
Constraint: 0nuy2.
12: zmx×my Real (Kind=nag_wp) array Output
On exit: zmy×q-1+r contains the derivative νx+νy xνx yνy s xq,yr , for q=1,2,,mx and r=1,2,,my.
13: 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:
ifail=1
On entry, nux=value.
Constraint: 0nux2.
ifail=2
On entry, nuy=value.
Constraint: 0nuy2.
ifail=3
On entry, mx=value.
Constraint: mx1.
ifail=4
On entry, my=value.
Constraint: my1.
ifail=5
On entry, for i=value, xi-1=value and xi=value.
Constraint: xi-1xi, for i=2,3,,mx.
ifail=6
On entry, for i=value, yi-1=value and yi=value.
Constraint: yi-1yi, for i=2,3,,my.
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

On successful exit, the partial derivatives on the given mesh are accurate to machine precision with respect to the supplied bicubic spline. Please refer to Section 7 in e01daf, e02daf, e02dcf and e02ddf of the routine document for the respective routine which calculated the spline approximant for details on the accuracy of that approximation.

8 Parallelism and Performance

e02dhf 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 reads in values of mx, my, xq, for q=1,2,,mx, and yr, for r=1,2,,my, followed by values of the ordinates fq,r defined at the grid points xq,yr. It then calls e02dcf to compute a bicubic spline approximation for one specified value of S. Finally it evaluates the spline and its first x derivative at a small sample of points on a rectangular grid by calling e02dhf.

10.1 Program Text

Program Text (e02dhfe.f90)

10.2 Program Data

Program Data (e02dhfe.d)

10.3 Program Results

Program Results (e02dhfe.r)