NAG FL Interface
e02jef (dim2_​spline_​ts_​evalv)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e02jef calculates a vector of values of a spline computed by e02jdf.

2 Specification

Fortran Interface
Subroutine e02jef ( nevalv, xevalv, yevalv, coefs, fevalv, iopts, opts, ifail)
Integer, Intent (In) :: nevalv, iopts(*)
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: xevalv(nevalv), yevalv(nevalv), coefs(*), opts(*)
Real (Kind=nag_wp), Intent (Out) :: fevalv(nevalv)
C Header Interface
#include <nag.h>
void  e02jef_ (const Integer *nevalv, const double xevalv[], const double yevalv[], const double coefs[], double fevalv[], const Integer iopts[], const double opts[], Integer *ifail)
The routine may be called by the names e02jef or nagf_fit_dim2_spline_ts_evalv.

3 Description

e02jef calculates values at prescribed points (xi,yi), for i=1,2,,n, of a bivariate spline computed by e02jdf. It is derived from the TSFIT package of O. Davydov and F. Zeilfelder.

4 References

Davydov O, Morandi R and Sestini A (2006) Local hybrid approximation for scattered data fitting with bivariate splines Comput. Aided Geom. Design 23 703–721
Davydov O, Sestini A and Morandi R (2005) Local RBF approximation for scattered data fitting with bivariate splines Trends and Applications in Constructive Approximation M. G. de Bruin, D. H. Mache, and J. Szabados, Eds ISNM Vol. 151 Birkhauser 91–102
Davydov O and Zeilfelder F (2004) Scattered data fitting by direct extension of local polynomials to bivariate splines Advances in Comp. Math. 21 223–271
Farin G and Hansford D (2000) The Essentials of CAGD Natic, MA: A K Peters, Ltd.

5 Arguments

1: nevalv Integer Input
On entry: n, the number of values at which the spline is to be evaluated.
Constraint: nevalv1.
2: xevalv(nevalv) Real (Kind=nag_wp) array Input
On entry: the (xi) values at which the spline is to be evaluated.
Constraint: for all i, xevalv(i) must lie inside, or on the boundary of, the spline's bounding box as determined by e02jdf.
3: yevalv(nevalv) Real (Kind=nag_wp) array Input
On entry: the (yi) values at which the spline is to be evaluated.
Constraint: for all i, yevalv(i) must lie inside, or on the boundary of, the spline's bounding box as determined by e02jdf.
4: coefs(*) Real (Kind=nag_wp) array Communication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument coefs in the previous call to e02jdf.
On entry: the computed spline coefficients as output from e02jdf.
5: fevalv(nevalv) Real (Kind=nag_wp) array Output
On exit: if ifail=0 on exit fevalv(i) contains the computed spline value at (xi,yi).
6: iopts(*) Integer array Communication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument iopts in the previous call to e02zkf.
On entry: the contents of the array must not have been modified either directly or indirectly, by a call to e02zkf, between calls to e02jdf and e02jef.
7: opts(*) Real (Kind=nag_wp) array Communication Array
Note: the dimension of this array is dictated by the requirements of associated functions that must have been previously called. This array must be the same array passed as argument opts in the previous call to e02zkf.
On entry: the contents of the array must not have been modified either directly or indirectly, by a call to e02zkf, between calls to e02jdf and e02jef.
8: 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=2
On entry, nevalv=value.
Constraint: nevalv1.
ifail=9
Option arrays are not initialized or are corrupted.
ifail=10
The fitting routine has not been called, or the array of coefficients has been corrupted.
ifail=13
On entry, xevalv(value)=value was outside the bounding box.
Constraint: valuexevalv(i)value for all i.
ifail=14
On entry, yevalv(value)=value was outside the bounding box.
Constraint: valueyevalv(i)value for all i.
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

e02jef uses the de Casteljau algorithm and thus is numerically stable. See Farin and Hansford (2000) for details.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
e02jef is not threaded in any implementation.

9 Further Comments

To evaluate a C1 approximation (i.e., when Global Smoothing Level=1), a real array of length O(1) is dynamically allocated by each invocation of e02jef. No memory is allocated internally when evaluating a C2 approximation.

10 Example

See e02jdf.