-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsablib.h
More file actions
30 lines (26 loc) · 762 Bytes
/
sablib.h
File metadata and controls
30 lines (26 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @file sablib.h
* @brief Header file of sablib, a C++ library for signal smoothing and baseline estimation
* @author Izadori
*/
#ifndef __SABLIB_H__
#define __SABLIB_H__
#include "smoothing/moving_average.h"
#include "smoothing/moving_median.h"
#include "smoothing/savitzky_golay.h"
#include "smoothing/whittaker.h"
#include "smoothing/pspline.h"
#include "baseline/sma.h"
#include "baseline/snip.h"
#include "baseline/polynomial.h"
#include "baseline/spline.h"
#include "baseline/modpoly.h"
#include "baseline/imodpoly.h"
#include "baseline/backcor.h"
#include "baseline/goldindec.h"
#include "baseline/asls.h"
#include "baseline/airpls.h"
#include "baseline/arpls.h"
#include "baseline/psalsa.h"
#include "baseline/beads.h"
#endif // __SABLIB_H__