Skip to content

tk-yoshimura/PadeApproximation

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PadeApproximation

Padé approximation is the best rational function that approximates a function.
Formulated in the following equation:

pade1

It can also be written like this:

pade2

When the coefficients are obtained in the Maclaurin series as follows:

pade3

With the following constraints:

pade4

Each coefficient is uniquely determined.

pade5

It is equivalent to solving the following simultaneous equations.

pade6

Implement

See below for an example implementation.
Since this is a calculation that produces many digit loss, the double precision does not produce the expected results.
MultiPrecisionCurveFitting

See Also

PadeInterpolation