view libcruft/ranlib/wrap.f @ 16062:cc5a7d1233f3 stable rc-3-6-4-2

bump version for 3.6.4-rc2 * configure.ac (AC_INIT): Version is now 3.6.4-rc2. (OCTAVE_RELEASE_DATE): Now 2013-02-11. (OCTAVE_COPYRIGHT): Now 2013.
author John W. Eaton <jwe@octave.org>
date Mon, 11 Feb 2013 16:22:26 -0500
parents 109fdf7b3dcb
children
line wrap: on
line source

      subroutine dgennor (av, sd, result)
      double precision av, sd, result
      result = gennor (real (av), real (sd))
      return
      end
      subroutine dgenunf (low, high, result)
      double precision low, high, result
      result = genunf (real (low), real (high))
      return
      end
      subroutine dgenexp (av, result)
      double precision av, result
      result = genexp (real (av))
      return
      end
      subroutine dgengam (a, r, result)
      double precision a, r, result
      result = gengam (real (a), real (r))
      return
      end
      subroutine dignpoi (mu, result)
      double precision mu, result
      result = ignpoi (real (mu))
      return
      end