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
14
15namespace sablib {
16
25const std::vector<double> BaselineSpline(const std::vector<double> & y, const std::vector<unsigned int> & indices);
26
27}; // namespace sablib
28
29#endif // __SABLIB_SPLINE_H__
Performs cubic spline parameter calculation and interpolation.
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:14