NAG CL Interface
e01rbc (dim1_​ratnl_​eval)

Settings help

CL Name Style:


1 Purpose

e01rbc evaluates continued fractions of the form produced by e01rac.

2 Specification

#include <nag.h>
void  e01rbc (Integer m, const double a[], const double u[], double x, double *f, NagError *fail)
The function may be called by the names: e01rbc, nag_interp_dim1_ratnl_eval or nag_1d_ratnl_eval.

3 Description

e01rbc evaluates the continued fraction
R(x)=a1+Rm(x)  
where
Ri(x)=am-i+ 2(x-um-i+ 1) 1+Ri- 1(x) ,   for ​ i=m,m- 1,,2.  
and
R1(x)=0  
for a prescribed value of x. e01rbc is intended to be used to evaluate the continued fraction representation (of an interpolatory rational function) produced by e01rac.

4 References

Graves–Morris P R and Hopkins T R (1981) Reliable rational interpolation Numer. Math. 36 111–128

5 Arguments

1: m Integer Input
On entry: m, the number of terms in the continued fraction.
Constraint: m1.
2: a[m] const double Input
On entry: a[j-1] must be set to the value of the parameter aj in the continued fraction, for j=1,2,,m.
3: u[m] const double Input
On entry: u[j-1] must be set to the value of the parameter uj in the continued fraction, for j=1,2,,m-1. (The element u[m-1] is not used).
4: x double Input
On entry: the value of x at which the continued fraction is to be evaluated.
5: f double * Output
On exit: the value of the continued fraction corresponding to the value of x.
6: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error 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 value had an illegal value.
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_POLE_PRESENT
x corresponds to a pole of R(x), or is very close. x=value.

7 Accuracy

See Section 7 in e01rac.

8 Parallelism and Performance

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

9 Further Comments

The time taken by e01rbc is approximately proportional to m.

10 Example

This example reads in the arguments aj and uj of a continued fraction (as determined by the example for e01rac) and evaluates the continued fraction at a point x.

10.1 Program Text

Program Text (e01rbce.c)

10.2 Program Data

Program Data (e01rbce.d)

10.3 Program Results

Program Results (e01rbce.r)