BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
src
estimator.h
Go to the documentation of this file.
1
/* This file is part of BlosSOM.
2
*
3
* Copyright (C) 2021 Sona Molnarova
4
*
5
* BlosSOM is free software: you can redistribute it and/or modify it under
6
* the terms of the GNU General Public License as published by the Free
7
* Software Foundation, either version 3 of the License, or (at your option)
8
* any later version.
9
*
10
* BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13
* details.
14
*
15
* You should have received a copy of the GNU General Public License along with
16
* BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17
*/
18
19
#ifndef ESTIMATOR_H
20
#define ESTIMATOR_H
21
22
#include <array>
23
#include <cstddef>
24
#include <tuple>
25
26
class
Estimator
27
{
28
public
:
29
Estimator
();
30
void
process_measurement
(
size_t
n,
float
t);
31
std::tuple<float, float>
get_estimate
();
32
void
reset
();
33
34
private
:
35
float
a
;
36
float
b
;
37
float
c
;
38
float
d
;
39
float
e
;
40
float
f
;
41
float
alpha
;
42
float
coalpha
;
43
};
44
45
#endif
// #ifndef ESTIMATOR_H
Estimator
Definition:
estimator.h:27
Estimator::b
float b
Definition:
estimator.h:36
Estimator::process_measurement
void process_measurement(size_t n, float t)
Definition:
estimator.cpp:42
Estimator::a
float a
Definition:
estimator.h:35
Estimator::reset
void reset()
Definition:
estimator.cpp:29
Estimator::e
float e
Definition:
estimator.h:39
Estimator::Estimator
Estimator()
Definition:
estimator.cpp:23
Estimator::f
float f
Definition:
estimator.h:40
Estimator::coalpha
float coalpha
Definition:
estimator.h:42
Estimator::get_estimate
std::tuple< float, float > get_estimate()
Definition:
estimator.cpp:68
Estimator::alpha
float alpha
Definition:
estimator.h:41
Estimator::c
float c
Definition:
estimator.h:37
Estimator::d
float d
Definition:
estimator.h:38
Generated by
1.9.4