39 subroutine polint( n, xa, ya, xpl, ypl, dypl )
43 integer ,
intent(in) :: n
44 real(dl),
intent(in) :: xa(n)
45 real(dl),
intent(in) :: ya(n)
46 real(dl),
intent(in) :: xpl
47 real(dl),
intent(out) :: ypl
48 real(dl),
intent(out) :: dypl
51 real(dl) :: den,dif,dift,ho,hp,wpl,cc(n),d(n)
54 dif = abs( xpl-xa(1) )
73 write(*,*)
'failure in polint' subroutine, public polint(n, xa, ya, xpl, ypl, dypl)
Neville interpolator: computes polynomial interpolation of a set of points.
This module contains the definitions of all the EFTCAMB interpolation algorithms. ...