spline_interp Function

private function spline_interp(self, x)

Bound wrapper to splint

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_interp(self, x)
    implicit none
    class (spline), intent(in) :: self
    real, intent(in) :: x
    spline_interp = splint(x, self)
  end function spline_interp