Bound wrapper to splint
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(spline), | intent(in) | :: | self | |||
real, | intent(in) | :: | x |
real function spline_interp(self, x)
implicit none
class (spline), intent(in) :: self
real, intent(in) :: x
spline_interp = splint(x, self)
end function spline_interp