defined Function

function defined(q, undef)

Arguments

Type IntentOptional Attributes Name
real :: q
real :: undef

Return Value logical


Called by

proc~~defined~~CalledByGraph proc~defined defined proc~latlon_zstar latlon_zstar proc~latlon_zstar->proc~defined program~time_ave time_ave program~time_ave->proc~defined program~time_ave->proc~latlon_zstar

Source Code

   function defined ( q,undef )
      implicit none
      logical  defined
      real     q,undef
      defined = q /= undef
   end function defined