NuMFor 9f2ab49 (2024-04-08)
Numerical (Modern) Fortran. Library for Simple Numerical computing
|
splev Computes a B-spline or its derivatives. More...
Public Member Functions | |
subroutine | splevp (u, tck, y, der, ext, ier) |
splevp Computes a B-spline or its derivatives for a parametric spline. Given the knots and coefficients of a B-spline representation, evaluate the value of the smoothing polynomial and its derivatives. This is a wrapper around the FORTRAN routines splev and splder of FITPACK. | |
subroutine | splevc (x, tck, y, der, ext, ier) |
splev Computes a B-spline or its derivatives. Given the knots and coefficients of a B-spline representation, evaluate the value of the smoothing polynomial and its derivatives. This is a wrapper around the FORTRAN routines splev and splder of FITPACK. | |
splev Computes a B-spline or its derivatives.
Given the knots and coefficients of a B-spline representation, evaluate the value of the smoothing polynomial and its derivatives. This is a wrapper around the FORTRAN routines splev and splder of FITPACK.
subroutine splevc | ( | real(dp), dimension(:), intent(in) | x, |
type(univspline), intent(in) | tck, | ||
real(dp), dimension(size(x)), intent(out) | y, | ||
integer, intent(in), optional | der, | ||
integer, intent(in), optional | ext, | ||
integer, intent(out), optional | ier ) |
splev Computes a B-spline or its derivatives. Given the knots and coefficients of a B-spline representation, evaluate the value of the smoothing polynomial and its derivatives. This is a wrapper around the FORTRAN routines splev and splder of FITPACK.
[in] | x | Points at which to return the value of the smoothed spline or its derivative |
[in] | tck | A spline representation returned by splrep |
[out] | y | Smoothed or interpolated spline values |
[in] | der | The order of the derivative of the spline to compute (must be less than k). |
[in] | ext | Flag controling the result for x outside the |
[out] | ier | Flag given output status interval defined by the knot sequence. |
subroutine splevp | ( | real(dp), dimension(:), intent(in) | u, |
type(univspline), intent(in) | tck, | ||
real(dp), dimension(:, :), intent(out) | y, | ||
integer, intent(in), optional | der, | ||
integer, intent(in), optional | ext, | ||
integer, intent(out), optional | ier ) |
splevp Computes a B-spline or its derivatives for a parametric spline. Given the knots and coefficients of a B-spline representation, evaluate the value of the smoothing polynomial and its derivatives. This is a wrapper around the FORTRAN routines splev and splder of FITPACK.
[in] | u | Points at which to return the value of the smoothed spline or its derivative |
[in] | tck | A spline representation returned by splrep |
[in] | der | The order of the derivative of the spline to compute (must be less than k). |
[in] | ext | Flag controling the result for x outside the |
[out] | ier | Flag given output status |
[out] | y | Smoothed or interpolated spline values |