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
65
66
67
68
69
70
71
72
73
|
#include <iostream>
#include <gsl/gsl_rng.h>
#include <vector>
#include <gsl/gsl_cdf.h>
#include <gsl/gsl_math.h>
#include "stratified_sampling.hpp"
#include <cmath>
#include <algorithm>
#include "opti.hpp"
using namespace std;
//--génération quantiles--
vector<double> quantile_norm(int n, double sigma){
vector<double> q(n);
for (int i=0; i<n; i++) {
q[i] = gsl_cdf_gaussian_Pinv ((double)(i+1)/n, sigma);
}
return q;
}
void exemple1() {
gsl_rng_env_setup();
vector<double> q = quantile_norm(10, 1);
vector<double> p(10, 0.1);
vector<gaussian_truncated> rvar;
rvar.push_back(gaussian_truncated(GSL_NEGINF, q[0],0,1,0));
for (int i=1; i<10; i++){
rvar.push_back(gaussian_truncated(q[i-1], q[i],0,1,i));
};
stratified_sampling<gaussian_truncated> S(p,rvar);
S.draw(100);
double x = 1.64*S.estimator().second;
cout<<"l'estimateur de la moyenne est :"<<S.estimator().first<<endl;
cout<<"Son intervalle de confiance à 95% est :"<<"["<<S.estimator().first-(x/10)<<" ,"<<S.estimator().first+(x/10)<<"]"<<endl;
S.draw(1000);
x = 1.64*S.estimator().second;
cout<<"l'estimateur de la moyenne est :"<<S.estimator().first<<endl;
cout<<"Son intervalle de confiance à 95% est :"<<"["<<S.estimator().first-(x/sqrt(1100))<<" ,"<<S.estimator().first+(x/sqrt(1100))<<"]"<<endl;
S.draw(10000);
x = 1.64*S.estimator().second;
cout<<"l'estimateur de la moyenne est :"<<S.estimator().first<<endl;
cout<<"Son intervalle de confiance à 95% est :"<<"["<<S.estimator().first-(x/sqrt(11100))<<" ,"<<S.estimator().first+(x/sqrt(11100))<<"]"<<endl;
};
void exemple2 (){
std::vector<double> mu(16);
mu = argmax(0.05, 1.0, 50, 0.1, 45, 16);
double norm_mu = 0;
std::vector<double> u(16);
for(int i=0; i<16; i++) {
norm_mu += mu[i]*mu[i];
u[i] = mu[i]/norm_mu;
}
vector<double> q = quantile_norm(100, 1);
vector<double> p(100, 0.01);
asian_option A(0.05, 1.0, 50, 0.1, 45, 16);
f_mu G(mu,A);
multi_gaussian_truncated MG(q[50],q[51], u);
for(int i=0; i<10; i++){
std::cout<<G(MG())<<std::endl;
}
}
int main()
{
exemple2();
return 0;
}
|