Random Generator
 
Betöltés...
Keresés...
Nincs egyezés
uniform.h
Ugrás a fájl dokumentációjához.
1
5#ifndef UNIFORM_H
6#define UNIFORM_H
7
8namespace bme {
9
11
15 double unif();
16
18
26 double unif(double a, double b);
27
29
34 int unif(int n);
35
37
40 void seed();
41
42}
43
44#endif
45
46
Definition uniform.cpp:7
void seed()
Véletlenszám-generátort inicializálása.
Definition uniform.cpp:23
double unif()
Egyenletes eloszlás a (0,1) intervallumon.
Definition uniform.cpp:9