spline_deriv Function

private function spline_deriv(self, x)

Bound wrapper to dsplint

Type Bound

spline

Arguments

Type IntentOptional Attributes Name
class(spline), intent(in) :: self
real, intent(in) :: x

Return Value real


Contents

Source Code


Source Code

  real function spline_deriv(self, x)
    implicit none
    class (spline), intent(in) :: self
    real, intent(in) :: x
    spline_deriv = dsplint(x, self)
  end function spline_deriv