sablib
Loading...
Searching...
No Matches
snip.h
Go to the documentation of this file.
1
10
11#ifndef __SABLIB_SNIP_H__
12#define __SABLIB_SNIP_H__
13
14#include <stdexcept>
15
16#include "result_type.h"
17#include "sablib_export.h"
18
19namespace sablib {
20
28{
32};
33
45SABLIB_EXPORT const BaselineResult
46BaselineSnip(
47 const std::vector<double> & y, const unsigned int m, const bool decreasing = true,
48 const SnipPreprocess preprocess = SnipPreprocess::None, const unsigned int loop = 1
49);
50
51}; // namespace sablib
52
53#endif // __SABLIB_SNIP_H__
@ LLS
Definition baseline.h:40
@ LL
Definition baseline.h:39
@ None
Definition baseline.h:38
Common definition of return value for baseline estimation functions.
SnipPreprocess
Preprocessing types for the SNIP algorithm.
Definition snip.h:28