NuMFor 9f2ab49 (2024-04-08)
Numerical (Modern) Fortran. Library for Simple Numerical computing
|
csplev Performs a spline interpolation in a point or in a table More...
Public Member Functions | |
real(dp) function | cspl_interp (xc, csp) |
Interpolates a function using previously calculated representation of splines. | |
real(dp) function, dimension(size(xnew)) | cspl_interp_tab (xnew, csp) |
Interpolates a function using previously calculated representation of splines. Works over an array of x values and returns an array of interpolated values | |
csplev Performs a spline interpolation in a point or in a table
real(dp) function cspl_interp | ( | real(dp), intent(in) | xc, |
class(cubicspline), intent(in) | csp ) |
Interpolates a function using previously calculated representation of splines.
csplrep()
[in] | xc | value where evaluate the interpolation |
[in] | csp | spline coefficients |
real(dp) function, dimension(size(xnew)) cspl_interp_tab | ( | real(dp), dimension(:), intent(in) | xnew, |
class(cubicspline), intent(in) | csp ) |
Interpolates a function using previously calculated representation of splines. Works over an array of x values and returns an array of interpolated values
[in] | csp | spline coefficients |
[in] | xnew | array of x values |