BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Functions
utils.hpp File Reference
#include <sstream>
#include <string>
#include <vector>
Include dependency graph for utils.hpp:

Go to the source code of this file.

Functions

float shift_interval (float value, float a, float b, float c, float d)
 Shifts value from [a,b] to [c, d]. More...
 
std::vector< std::string > split (const std::string &str, char delim)
 Splits a given string into words by a given delimiter. More...
 

Function Documentation

◆ shift_interval()

float shift_interval ( float  value,
float  a,
float  b,
float  c,
float  d 
)

Shifts value from [a,b] to [c, d].

Parameters
valueOld value.
aOld interval - from.
bOld interval - to.
cNew interval - from.
dNew interval - to.
Returns
float New value.

Definition at line 38 of file utils.hpp.

◆ split()

std::vector< std::string > split ( const std::string &  str,
char  delim 
)

Splits a given string into words by a given delimiter.

Parameters
strInput string for splitting.
delimDelimiter used for splitting.
Returns
std::vector<std::string> Array of resulting words.

Definition at line 51 of file utils.hpp.