GNU Octave  4.4.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
wrap.f
Go to the documentation of this file.
1  subroutine dgennor (av, sd, result)
2  double precision av, sd, result
3  real gennor
4  external gennor
5  result = gennor(real (av), real (sd))
6  return
7  end
8  subroutine dgenunf (low, high, result)
9  double precision low, high, result
10  real genunf
11  external genunf
12  result = genunf(real (low), real (high))
13  return
14  end
15  subroutine dgenexp (av, result)
16  double precision av, result
17  real genexp
18  external genexp
19  result = genexp(real(av))
20  return
21  end
22  subroutine dgengam (a, r, result)
23  double precision a, r, result
24  real gengam
25  external gengam
26  result = gengam(real (a), real (r))
27  return
28  end
29  subroutine dignpoi (mu, result)
30  double precision mu, result
31  integer*4 ignpoi
32  external ignpoi
33  result = ignpoi(real(mu))
34  return
35  end
36  subroutine fgennor (av, sd, result)
37  real av, sd, result
38  real gennor
39  external gennor
40  result = gennor(av, sd)
41  return
42  end
43  subroutine fgenunf (low, high, result)
44  real low, high, result
45  real genunf
46  external genunf
47  result = genunf(low, high)
48  return
49  end
50  subroutine fgenexp (av, result)
51  real av, result
52  real genexp
53  external genexp
54  result = genexp(av)
55  return
56  end
57  subroutine fgengam (a, r, result)
58  real a, r, result
59  real gengam
60  external gengam
61  result = gengam(a, r)
62  return
63  end
64  subroutine fignpoi (mu, result)
65  real mu, result
66  integer*4 ignpoi
67  external ignpoi
68  result = ignpoi(mu)
69  return
70  end
subroutine dignpoi(mu, result)
Definition: wrap.f:30
subroutine fgenunf(low, high, result)
Definition: wrap.f:44
subroutine dgenunf(low, high, result)
Definition: wrap.f:9
subroutine dgenexp(av, result)
Definition: wrap.f:16
subroutine dgengam(a, r, result)
Definition: wrap.f:23
subroutine fgenexp(av, result)
Definition: wrap.f:51
subroutine fgennor(av, sd, result)
Definition: wrap.f:37
subroutine dgennor(av, sd, result)
Definition: wrap.f:2
subroutine fignpoi(mu, result)
Definition: wrap.f:65
subroutine fgengam(a, r, result)
Definition: wrap.f:58
ColumnVector real(const ComplexColumnVector &a)
Definition: dColVector.cc:135