forked from jacyara/GenESyS-Reborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HypothesisTesterMyImpl1.cpp
47 lines (34 loc) · 1.35 KB
/
HypothesisTesterMyImpl1.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
/*
* 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: HypothesisTester.cpp
* Author: cancian
*
* Created on 7 de Agosto de 2018, 19:03
*/
#include "HypothesisTesterMyImpl1.h"
HypothesisTesterMyImpl1::HypothesisTesterMyImpl1() {
}
HypothesisTesterMyImpl1::HypothesisTesterMyImpl1(const HypothesisTesterMyImpl1& orig) {
}
HypothesisTesterMyImpl1::~HypothesisTesterMyImpl1() {
}
bool HypothesisTesterMyImpl1::testAverage(double confidencelevel, double avg, H1Comparition comp) {
}
bool HypothesisTesterMyImpl1::testProportion(double confidencelevel, double prop, H1Comparition comp) {
}
bool HypothesisTesterMyImpl1::testVariance(double confidencelevel, double var, H1Comparition comp) {
}
bool HypothesisTesterMyImpl1::testAverage(double confidencelevel, std::string secondPopulationDataFilename, H1Comparition comp) {
}
bool HypothesisTesterMyImpl1::testProportion(double confidencelevel, std::string secondPopulationDataFilename, H1Comparition comp) {
}
bool HypothesisTesterMyImpl1::testVariance(double confidencelevel, std::string secondPopulationDataFilename, H1Comparition comp) {
}
void HypothesisTesterMyImpl1::setDataFilename(std::string dataFilename) {
}
std::string HypothesisTesterMyImpl1::getDataFilename() {
}