wrap.f

Go to the documentation of this file.
00001       subroutine dgennor (av, sd, result)
00002       double precision av, sd, result
00003       result = gennor (real (av), real (sd))
00004       return
00005       end
00006       subroutine dgenunf (low, high, result)
00007       double precision low, high, result
00008       result = genunf (real (low), real (high))
00009       return
00010       end
00011       subroutine dgenexp (av, result)
00012       double precision av, result
00013       result = genexp (real (av))
00014       return
00015       end
00016       subroutine dgengam (a, r, result)
00017       double precision a, r, result
00018       result = gengam (real (a), real (r))
00019       return
00020       end
00021       subroutine dignpoi (mu, result)
00022       double precision mu, result
00023       result = ignpoi (real (mu))
00024       return
00025       end
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines