nag_1d_pade_eval (e02rbc) (PDF version)
e02 Chapter Contents
e02 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_1d_pade_eval (e02rbc)

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

nag_1d_pade_eval (e02rbc) evaluates a rational function at a user-supplied point, given the numerator and denominator coefficients.

2  Specification

#include <nag.h>
#include <nage02.h>
void  nag_1d_pade_eval (const double a[], Integer ia, const double b[], Integer ib, double x, double *ans, NagError *fail)

3  Description

Given a real value x and the coefficients aj, for j=0,1,,l and bk, for k=0,1,,m, nag_1d_pade_eval (e02rbc) evaluates the rational function
j=0lajxj k=0mbkxk .  
using nested multiplication (see Conte and de Boor (1965)).
A particular use of nag_1d_pade_eval (e02rbc) is to compute values of the Padé approximants determined by nag_1d_pade (e02rac).

4  References

Conte S D and de Boor C (1965) Elementary Numerical Analysis McGraw–Hill
Peters G and Wilkinson J H (1971) Practical problems arising in the solution of polynomial equations J. Inst. Maths. Applics. 8 16–35

5  Arguments

1:     a[ia] const doubleInput
On entry: a[j], for j=1,2,,l+1, must contain the value of the coefficient aj in the numerator of the rational function.
2:     ia IntegerInput
On entry: the value of l+1, where l is the degree of the numerator.
Constraint: ia1.
3:     b[ib] const doubleInput
On entry: b[k], for k=1,2,,m+1, must contain the value of the coefficient bk in the denominator of the rational function.
Constraint: if ib=1, b[0]0.0.
4:     ib IntegerInput
On entry: the value of m+1, where m is the degree of the denominator.
Constraint: ib1.
5:     x doubleInput
On entry: the point x at which the rational function is to be evaluated.
6:     ans double *Output
On exit: the result of evaluating the rational function at the given point x.
7:     fail NagError *Input/Output
The NAG error argument (see Section 3.6 in the Essential Introduction).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.2.1.2 in the Essential Introduction for further information.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_INT
On entry, ia=value.
Constraint: ia1.
On entry, ib=value.
Constraint: ib1.
NE_INT_ARRAY
The first ib entries in b are zero: ib=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.
An unexpected error has been triggered by this function. Please contact NAG.
See Section 3.6.6 in the Essential Introduction for further information.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 3.6.5 in the Essential Introduction for further information.
NE_POLE_PRESENT
Evaluation at or near a pole.

7  Accuracy

A running error analysis for polynomial evaluation by nested multiplication using the recurrence suggested by Kahan (see Peters and Wilkinson (1971)) is used to detect whether you are attempting to evaluate the approximant at or near a pole.

8  Parallelism and Performance

Not applicable.

9  Further Comments

The time taken is approximately proportional to l+m.

10  Example

This example first calls nag_1d_pade (e02rac) to calculate the 4/4 Padé approximant to ex, and then uses nag_1d_pade_eval (e02rbc) to evaluate the approximant at x=0.1,0.2,,1.0.

10.1  Program Text

Program Text (e02rbce.c)

10.2  Program Data

None.

10.3  Program Results

Program Results (e02rbce.r)

GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 2 4 6 8 10 12 14 16 18 20 22 0 0.5 1 1.5 2 2.5 3 1e−14 1e−12 1e−10 1e−08 1e−06 0.0001 0.01 y(x) Error x Example Program The [4|4] Pade Approximant of exp(x) gnuplot_plot_1 Pade gnuplot_plot_2 exp(x) gnuplot_plot_3 Error

nag_1d_pade_eval (e02rbc) (PDF version)
e02 Chapter Contents
e02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015