e02agc computes constrained weighted least squares polynomial approximations in Chebyshev series form to an arbitrary set of data points. The values of the approximations and any number of their derivatives can be specified at selected points.
The function may be called by the names: e02agc, nag_fit_dim1_cheb_con or nag_1d_cheb_fit_constr.
3Description
e02agc determines least squares polynomial approximations of degrees up to to the set of data points with weights , for . The value of , the maximum degree required, is to be prescribed by you. At each of the values , for , of the independent variable , the approximations and their derivatives up to order are constrained to have one of the values , for , specified by you, where .
The approximation of degree has the property that, subject to the imposed constraints, it minimizes , the sum of the squares of the weighted residuals , for , where
and is the value of the polynomial approximation of degree at the th data point.
Each polynomial is represented in Chebyshev series form with normalized argument . This argument lies in the range to and is related to the original variable by the linear transformation
where and , specified by you, are respectively the lower and upper end points of the interval of over which the polynomials are to be defined.
The polynomial approximation of degree can be written as
where is the Chebyshev polynomial of the first kind of degree with argument . For , the function produces the values of the coefficients , for , together with the value of the root mean square residual,
where is the number of data points with nonzero weight.
Values of the approximations may subsequently be computed using e02aecore02akc.
First e02agc determines a polynomial , of degree , which satisfies the given constraints, and a polynomial , of degree , which has value (or derivative) zero wherever a constrained value (or derivative) is specified. It then fits , for , with polynomials of the required degree in each with factor . Finally the coefficients of are added to the coefficients of these fits to give the coefficients of the constrained polynomial approximations to the data points , for . The method employed is given in Hayes (1970): it is an extension of Forsythe's orthogonal polynomials method (see Forsythe (1957)) as modified by Clenshaw (see Clenshaw (1960)).
4References
Clenshaw C W (1960) Curve fitting with a digital computer Comput. J.2 170–173
Forsythe G E (1957) Generation and use of orthogonal polynomials for data fitting with a digital computer J. Soc. Indust. Appl. Math.5 74–88
Hayes J G (ed.) (1970) Numerical Approximation to Functions and Data Athlone Press, London
5Arguments
1: – Nag_OrderTypeInput
On entry: the order argument specifies the two-dimensional storage scheme being used, i.e., row-major ordering or column-major ordering. C language defined storage is specified by . See Section 3.1.3 in the Introduction to the NAG Library CL Interface for a more detailed explanation of the use of this argument.
Constraint:
or .
2: – IntegerInput
On entry: , the number of data points to be fitted.
Constraint:
.
3: – IntegerInput
On entry: , the maximum degree required.
Constraint:
where is the total number of constraints and is the number of data points with nonzero weights and distinct abscissae which do not coincide with any of the .
4: – doubleInput
5: – doubleInput
On entry: the lower and upper end points, respectively, of the interval . Unless there are specific reasons to the contrary, it is recommended that xmin and xmax be set respectively to the lowest and highest value among the and . This avoids the danger of extrapolation provided there is a constraint point or data point with nonzero weight at each end point.
Constraint:
.
6: – const doubleInput
On entry: must contain the value of the independent variable at the th data point, for .
Constraint:
the must be in nondecreasing order and satisfy .
7: – const doubleInput
On entry: must contain , the value of the dependent variable at the th data point, for .
8: – const doubleInput
On entry: must contain the weight to be applied to the data point , for . For advice on the choice of weights see the E02 Chapter Introduction. Negative weights are treated as positive. A zero weight causes the corresponding data point to be ignored. Zero weight should be given to any data point whose and values both coincide with those of a constraint (otherwise the denominators involved in the root mean square residuals will be slightly in error).
9: – IntegerInput
On entry: , the number of values of the independent variable at which a constraint is specified.
Constraint:
.
10: – const doubleInput
On entry: must contain , the value of the independent variable at which a constraint is specified, for .
Constraint:
these values need not be ordered but must be distinct and satisfy .
11: – const doubleInput
Note: the dimension, dim, of the array yf
must be at least
.
On entry: the values which the approximating polynomials and their derivatives are required to take at the points specified in xf. For each value of
, yf contains in successive elements the required value of the approximation, its first derivative, second derivative, th derivative, for . Thus the value, , which the th derivative of each approximation ( referring to the approximation itself) is required to take at the point must be contained in , where
where and . The derivatives are with respect to the independent variable .
12: – const IntegerInput
On entry: must contain , the order of the highest-order derivative specified at , for . implies that the value of the approximation at is specified, but not that of any derivative.
Constraint:
, for .
13: – doubleOutput
Note: the dimension, dim, of the array
a
must be at least
.
the dimension, dim, of the array a
must be at least
.
where appears in this document, it refers to the array element
when ;
when .
On exit: contains the coefficient in the approximating polynomial of degree , for and .
14: – doubleOutput
On exit: contains , for , the root mean square residual corresponding to the approximating polynomial of degree . In the case where the number of data points with nonzero weight is equal to , is indeterminate: the function sets it to zero. For the interpretation of the values of and their use in selecting an appropriate degree, see Section 3.1 in the E02 Chapter Introduction.
15: – Integer *Output
On exit: contains the total number of constraint conditions imposed: .
16: – doubleOutput
On exit: contains weighted residuals of the highest degree of fit determined . The residual at
is in element , for . The rest of the array is used as workspace.
17: – NagError *Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).
6Error Indicators and Warnings
NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
NE_BAD_PARAM
On entry, argument had an illegal value.
NE_CONSTRAINT
Constraint: where is the total number of constraints and is the number of data points with nonzero weights and distinct abscissae which do not coincide with any of the .
NE_ILL_CONDITIONED
The polynomials and/or cannot be found. The problem is too ill-conditioned. This may occur when the constraint points are very close together, or large in number, or when an attempt is made to constrain high-order derivatives.
NE_INT
On entry, .
Constraint: .
On entry, .
Constraint: .
NE_INT_3
On entry, , where is the number of data points with nonzero weight and distinct abscissae different from all xf, and n is the total number of constraints: , and .
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library CL Interface for further information.
NE_NOT_MONOTONIC
On entry, , and .
Constraint: .
NE_REAL_2
On entry, and .
Constraint: .
NE_REAL_ARRAY
On entry, , , and .
Constraint: .
On entry, lies outside interval : , , and .
On entry, lies outside interval : , , and .
On entry, lies outside interval for some .
7Accuracy
No complete error analysis exists for either the interpolating algorithm or the approximating algorithm. However, considerable experience with the approximating algorithm shows that it is generally extremely satisfactory. Also the moderate number of constraints, of low-order, which are typical of data fitting applications, are unlikely to cause difficulty with the interpolating function.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
e02agc is not threaded in any implementation.
9Further Comments
The time taken to form the interpolating polynomial is approximately proportional to , and that to form the approximating polynomials is very approximately proportional to .
To carry out a least squares polynomial fit without constraints, use e02adc. To carry out polynomial interpolation only, use e01aec.
10Example
This example reads data in the following order, using the notation of the argument list above:
the root mean square residual for each degree from to ;
the Chebyshev coefficients for the fit of degree ;
the data points, and the fitted values and residuals for the fit of degree .
The program is written in a generalized form which will read any number of datasets.
The dataset supplied specifies data points in the interval with unit weights, to which are to be fitted polynomials, , of degrees up to , subject to the constraints: