cosd Function

public elemental function cosd(x) result(c)

Arguments

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

Return Value real(kind=REAL64)


Called by

proc~~cosd~~CalledByGraph proc~cosd cosd proc~write_data RegridSupport%write_data proc~write_data->proc~cosd program~main~3 main program~main~3->proc~write_data

Source Code

   elemental function cosd(x) result(c)
      real(kind=REAL64), intent(in) :: x
      real(kind=REAL64) :: c

      c = cos(x * MAPL_DEGREES_TO_RADIANS_R8)

   end function cosd