derf_ext Function

private elemental function derf_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 derf_ext (x)
    implicit none
    real (kind=kind_rd), intent (in) :: x
    real (kind=kind_rd) :: derf_ext
    derf_ext = erf(x)
  end function derf_ext