-
Notifications
You must be signed in to change notification settings - Fork 10
/
FitterMyImpl1.cpp
66 lines (40 loc) · 1.32 KB
/
FitterMyImpl1.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
/*
* 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: FitterMyImpl1.cpp
* Author: cancian
*
* Created on 23 de Agosto de 2018, 15:36
*/
#include "FitterMyImpl1.h"
FitterMyImpl1::FitterMyImpl1() {
}
FitterMyImpl1::FitterMyImpl1(const FitterMyImpl1& orig) {
}
FitterMyImpl1::~FitterMyImpl1() {
}
bool FitterMyImpl1::isNormalDistributed(double confidencelevel) {
}
void FitterMyImpl1::fitUniform(double *sqrerror, double *min, double *max) {
}
void FitterMyImpl1::fitTriangular(double *sqrerror, double *min, double *mo, double *max) {
}
void FitterMyImpl1::fitNormal(double *sqrerror, double *avg, double *stddev) {
}
void FitterMyImpl1::fitExpo(double *sqrerror, double *avg1) {
}
void FitterMyImpl1::fitErlang(double *sqrerror, double *a, double *b, double *offset, double *mult) {
}
void FitterMyImpl1::fitBeta(double *sqrerror, double *a, double *b, double *offset, double *mult) {
}
void FitterMyImpl1::fitWeibull(double *sqrerror, double *a, double *b, double *offset, double *mult) {
}
void FitterMyImpl1::fitAll(double *sqrerror, std::string *name) {
}
void FitterMyImpl1::setDataFilename(std::string dataFilename) {
}
std::string FitterMyImpl1::getDataFilename() {
}