sablib
Loading...
Searching...
No Matches
spline.h
Go to the documentation of this file.
1
6
7#ifndef __SABLIB_SPLINE_H__
8#define __SABLIB_SPLINE_H__
9
10#include <stdexcept>
11#include <vector>
12
13namespace sablib {
14
23const std::vector<double> BaselineSpline(const std::vector<double> & y, const std::vector<unsigned int> & indices);
24
25}; // namespace sablib
26
27#endif // __SABLIB_SPLINE_H__
const std::vector< double > BaselineSpline(const std::vector< double > &y, const std::vector< unsigned int > &indices)
Performs baseline estimation using cubic spline interpolation.
Definition spline.cpp:16