-
Notifications
You must be signed in to change notification settings - Fork 10
/
SamplerMyImpl1.cpp
64 lines (44 loc) · 1.35 KB
/
SamplerMyImpl1.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: SamplerMyImpl1.cpp
* Author: cancian
*
* Created on 23 de Agosto de 2018, 13:08
*/
#include "SamplerMyImpl1.h"
SamplerMyImpl1::SamplerMyImpl1() {
}
SamplerMyImpl1::SamplerMyImpl1(const SamplerMyImpl1& orig) {
}
SamplerMyImpl1::~SamplerMyImpl1() {
}
double SamplerMyImpl1::random() {
}
double SamplerMyImpl1::sampleUniform(double min, double max) {
}
double SamplerMyImpl1::sampleExponential(double mean) {
}
double SamplerMyImpl1::sampleErlang(double mean, int M) {
}
double SamplerMyImpl1::sampleNormal(double mean, double stddev) {
}
double SamplerMyImpl1::sampleGamma(double mean, double alpha) {
}
double SamplerMyImpl1::sampleBeta(double alpha, double beta, double infLimit, double supLimit) {
}
double SamplerMyImpl1::sampleWeibull(double alpha, double scale) {
}
double SamplerMyImpl1::sampleLogNormal(double mean, double stddev) {
}
double SamplerMyImpl1::sampleTriangular(double min, double mode, double max) {
}
double SamplerMyImpl1::sampleDiscrete(double value, double acumProb, ...) {
}
void SamplerMyImpl1::setRNGparameters(SamplerMyImpl1::RNG_Parameters param){
}
SamplerMyImpl1::RNG_Parameters SamplerMyImpl1::getRNGparameters() const {
}