-
Notifications
You must be signed in to change notification settings - Fork 10
/
StatisticsMyImpl1.cpp
83 lines (58 loc) · 1.61 KB
/
StatisticsMyImpl1.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*
* 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: StatisticsMyImpl1.cpp
* Author: cancian
*
* Created on 23 de Agosto de 2018, 16:52
*/
#include "StatisticsMyImpl1.h"
StatisticsMyImpl1::StatisticsMyImpl1() {
}
StatisticsMyImpl1::StatisticsMyImpl1(const StatisticsMyImpl1& orig) {
}
StatisticsMyImpl1::~StatisticsMyImpl1() {
}
unsigned int StatisticsMyImpl1::numElements() {
}
double StatisticsMyImpl1::min() {
}
double StatisticsMyImpl1::max() {
}
double StatisticsMyImpl1::average() {
}
double StatisticsMyImpl1::mode() {
}
double StatisticsMyImpl1::mediane() {
}
double StatisticsMyImpl1::variance() {
}
double StatisticsMyImpl1::stddeviation() {
}
double StatisticsMyImpl1::variationCoef() {
}
double StatisticsMyImpl1::halfWidthConfidenceInterval(double confidencelevel) {
}
unsigned int StatisticsMyImpl1::newSampleSize(double confidencelevel, double halfWidth) {
}
double StatisticsMyImpl1::quartil(unsigned short num) {
}
double StatisticsMyImpl1::decil(unsigned short num) {
}
double StatisticsMyImpl1::centil(unsigned short num) {
}
void StatisticsMyImpl1::setHistogramNumClasses(unsigned short num) {
}
unsigned short StatisticsMyImpl1::histogramNumClasses() {
}
double StatisticsMyImpl1::histogramClassLowerLimit(unsigned short classNum) {
}
unsigned int StatisticsMyImpl1::histogramClassFrequency(unsigned short classNum) {
}
void StatisticsMyImpl1::setDataFilename(std::string _filename) {
}
std::string StatisticsMyImpl1::getDataFilename() const {
}