BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
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
27{
28public:
29 Estimator();
30 void process_measurement(size_t n, float t);
31 std::tuple<float, float> get_estimate();
32 void reset();
33
34private:
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
float b
Definition: estimator.h:36
void process_measurement(size_t n, float t)
Definition: estimator.cpp:42
float a
Definition: estimator.h:35
void reset()
Definition: estimator.cpp:29
float e
Definition: estimator.h:39
float f
Definition: estimator.h:40
float coalpha
Definition: estimator.h:42
std::tuple< float, float > get_estimate()
Definition: estimator.cpp:68
float alpha
Definition: estimator.h:41
float c
Definition: estimator.h:37
float d
Definition: estimator.h:38