diff options
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,12 +36,12 @@ int main() cout<<"Son intervalle de confiance à 95% est :"<<"["<<S.estimator().first-(x/10)<<" ,"<<S.estimator().first+(x/10)<<"]"<<endl; //S.update(1000); S.draw(1000); - x = 1,64*S.estimator().second; + 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.update(10000); S.draw(10000); - x = 1,64*S.estimator().second; + 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; |
