dlgamma_ext Function

private elemental function dlgamma_ext(x)

FIXME : Add documentation

Arguments

Type IntentOptional Attributes Name
real(kind=kind_rd), intent(in) :: x

Return Value real(kind=kind_rd)


Contents

Source Code


Source Code

  elemental function dlgamma_ext (x)
    implicit none
    real (kind=kind_rd), intent (in) :: x
    real (kind=kind_rd):: dlgamma_ext
    dlgamma_ext = log_gamma(x)
  end function dlgamma_ext