GNU Octave  4.2.1
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
wrap.f
Go to the documentation of this file.
1  subroutine dgennor (av, sd, result)
2  double precision av, sd, result
3  result = gennor(real (av), real (sd))
4  return
5  end
6  subroutine dgenunf (low, high, result)
7  double precision low, high, result
8  result = genunf(real (low), real (high))
9  return
10  end
11  subroutine dgenexp (av, result)
12  double precision av, result
13  result = genexp(real(av))
14  return
15  end
16  subroutine dgengam (a, r, result)
17  double precision a, r, result
18  result = gengam(real (a), real (r))
19  return
20  end
21  subroutine dignpoi (mu, result)
22  double precision mu, result
23  result = ignpoi(real(mu))
24  return
25  end
subroutine dignpoi(mu, result)
Definition: wrap.f:21
subroutine dgenunf(low, high, result)
Definition: wrap.f:6
subroutine dgenexp(av, result)
Definition: wrap.f:11
subroutine dgengam(a, r, result)
Definition: wrap.f:16
subroutine dgennor(av, sd, result)
Definition: wrap.f:1
ColumnVector real(const ComplexColumnVector &a)
Definition: dColVector.cc:136