EFTCAMB  Reference documentation for version 3.0
Functions/Subroutines
eftcamb_interpolation Module Reference

This module contains the definitions of all the EFTCAMB interpolation algorithms. More...

Functions/Subroutines

subroutine, public polint (n, xa, ya, xpl, ypl, dypl)
 Neville interpolator: computes polynomial interpolation of a set of points. More...
 

Detailed Description

This module contains the definitions of all the EFTCAMB interpolation algorithms.

Author
Bin Hu, Marco Raveri

Function/Subroutine Documentation

subroutine, public eftcamb_interpolation::polint ( integer, intent(in)  n,
real(dl), dimension(n), intent(in)  xa,
real(dl), dimension(n), intent(in)  ya,
real(dl), intent(in)  xpl,
real(dl), intent(out)  ypl,
real(dl), intent(out)  dypl 
)

Neville interpolator: computes polynomial interpolation of a set of points.

Parameters
[in]nnumber of points in the table
[in]xafirst coordinate of the points to be interpolated
[in]yasecond coordinate of the points to be interpolated y=f(x)
[in]xplrequested value of x
[out]yploutput value of the interpolated function at xpl
[out]dyploutput error estimate on the value of the interpolated function at xpl

Definition at line 40 of file 02_interpolation.f90.