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
12#include "result_type.h"
13#include "sablib_export.h"
14
15namespace sablib {
16
25SABLIB_EXPORT const BaselineResult BaselineSpline(const std::vector<double> & y, const std::vector<unsigned int> & indices);
26
27}; // namespace sablib
28
29#endif // __SABLIB_SPLINE_H__
Common definition of return value for baseline estimation functions.
const BaselineResult BaselineSpline(const std::vector< double > &y, const std::vector< unsigned int > &indices)
Performs baseline estimation using cubic spline interpolation.
Definition spline.cpp:16
Return value structure for baseline estimation functions.
Definition result_type.h:19