sablib
Loading...
Searching...
No Matches
snip.h
Go to the documentation of this file.
1
10
11#include <stdexcept>
12#include <vector>
13
14#ifndef __SABLIB_SNIP_H__
15#define __SABLIB_SNIP_H__
16
17namespace sablib {
18
26{
30};
31
43const std::vector<double>
44BaselineSnip(
45 const std::vector<double> & y, const unsigned int m, const bool decreasing = true,
46 const SnipPreprocess preprocess = SnipPreprocess::None, const unsigned int loop = 1
47);
48
49}; // namespace sablib
50
51#endif // __SABLIB_SNIP_H__
SnipPreprocess
Preprocessing types for the SNIP algorithm.
Definition snip.h:26