-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCFitting.h
More file actions
36 lines (26 loc) · 779 Bytes
/
CFitting.h
File metadata and controls
36 lines (26 loc) · 779 Bytes
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
/*
* fitting.h
* zContrast
*
* Created by Andrew Logsdail on 26/01/2011.
* Copyright 2011 University of Birmingham. All rights reserved.
*
*/
#ifndef FITTING_H
#define FITTING_H
#include "CompareWorkLink.h"
#include "Structures.h"
class Fitting{
public:
Fitting() {;}
~Fitting() {;}
// Linear fitting methods.
bool gaussian(int *s, const CreateV &crV, const CompareV &co, std::vector<std::string> *output_content);
bool scale(int *s, const CreateV &crV, const CompareV &co, std::vector<std::string> *output_content);
// Currently not working
// Two variable fitting methods
// bool translate(int *s, const CreateV &crV, const CompareV &co);
private:
void printConvergenceError(const int &c, std::vector<std::string> *output_content);
};
#endif