BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
utils.hpp
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Mirek Kratochvil
4 * Sona Molnarova
5 *
6 * BlosSOM is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
18 */
19
20#ifndef UTILS_HPP
21#define UTILS_HPP
22
23#include <sstream>
24#include <string>
25#include <vector>
26
27/**
28 * @brief Shifts value from [a,b] to [c, d].
29 *
30 * @param value Old value.
31 * @param a Old interval - from.
32 * @param b Old interval - to.
33 * @param c New interval - from.
34 * @param d New interval - to.
35 * @return float New value.
36 */
37float
38shift_interval(float value, float a, float b, float c, float d)
39{
40 return c + ((d - c) / (b - a)) * (value - a);
41}
42
43/**
44 * @brief Splits a given string into words by a given delimiter.
45 *
46 * @param str Input string for splitting.
47 * @param delim Delimiter used for splitting.
48 * @return std::vector<std::string> Array of resulting words.
49 */
50std::vector<std::string>
51split(const std::string &str, char delim)
52{
53 std::vector<std::string> result;
54 std::stringstream ss(str);
55 std::string item;
56
57 while (getline(ss, item, delim)) {
58 result.emplace_back(item);
59 }
60
61 return result;
62}
63
64#endif // #ifndef UTILS_HPP
float shift_interval(float value, float a, float b, float c, float d)
Shifts value from [a,b] to [c, d].
Definition: utils.hpp:38
std::vector< std::string > split(const std::string &str, char delim)
Splits a given string into words by a given delimiter.
Definition: utils.hpp:51