23template <
typename T> std::vector<T>
boxcarSmooth(std::vector<T>
const &input,
unsigned int const numPoints);
35template <
typename T> std::vector<T>
boxcarErrorSmooth(std::vector<T>
const &input,
unsigned int const numPoints);
46template <
typename T> std::vector<T>
boxcarRMSESmooth(std::vector<T>
const &input,
unsigned int const numPoints);
56template <
typename Y> std::vector<Y>
fftSmooth(std::vector<Y>
const &input,
unsigned const cutoff);
68std::vector<Y>
fftButterworthSmooth(std::vector<Y>
const &input,
unsigned const cutoff,
unsigned const order);
std::vector< T > boxcarErrorSmooth(std::vector< T > const &input, unsigned int const numPoints)
Performs boxcar (moving average) smoothing on the input data, using error propagation formula.
std::vector< T > boxcarSmooth(std::vector< T > const &input, unsigned int const numPoints)
Performs boxcar (moving average) smoothing on the input data.
std::vector< Y > fftButterworthSmooth(std::vector< Y > const &input, unsigned const cutoff, unsigned const order)
Performs FFT smoothing on the input data, using a Butterworth filter NOTE: the input data MUST be def...
std::vector< T > boxcarRMSESmooth(std::vector< T > const &input, unsigned int const numPoints)
Performs boxcar (moving average) smoothing on the input data, using a RMSE average,...
std::vector< Y > fftSmooth(std::vector< Y > const &input, unsigned const cutoff)
Performs FFT smoothing on the input data, with high frequencies set to zero NOTE: the input data MUST...