view liboctave/external/ranlib/wrap.f @ 23434:f4d4d83f15c5

maint: rename cruft/ directory to external/ * liboctave/external: Renamed from liboctave/cruft. * * configure.ac: Rename XTRA_CRUFT_SH_LDFLAGS to XTRA_EXTERNAL_SH_LDFLAGS. Rename CRUFT_DLL_DEFS to EXTERNAL_DLL_DEFS. * install.txi: Update documentation to refer to liboctave/external. * HACKING: Update explanation of directory tree. * liboctave/module.mk: Update build system to include liboctave/external * liboctave/numeric/module.mk: Update CPPFLAGS to find Faddeeva in external/ directory. * lo-blas-proto.h, lo-lapack-proto.h: Update comments which referred to cruft directory.
author Rik <rik@octave.org>
date Mon, 24 Apr 2017 21:03:38 -0700
parents liboctave/cruft/ranlib/wrap.f@648dabbb4c6b
children 32671b14ed7b
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