WeightedLowess
A C++ library for LOWESS with various weighting schemes
|
Compute the LOWESS trend fit. More...
Go to the source code of this file.
Classes | |
struct | WeightedLowess::Results< Data_ > |
Store the smoothing results. More... | |
Namespaces | |
namespace | WeightedLowess |
Namespace for LOWESS functions. | |
Functions | |
template<typename Data_ > | |
void | WeightedLowess::compute (size_t num_points, const Data_ *x, const PrecomputedWindows< Data_ > &windows, const Data_ *y, Data_ *fitted, Data_ *robust_weights, const Options< Data_ > &opt) |
template<typename Data_ > | |
void | WeightedLowess::compute (size_t num_points, const Data_ *x, const Data_ *y, Data_ *fitted, Data_ *robust_weights, const Options< Data_ > &opt) |
template<typename Data_ > | |
Results< Data_ > | WeightedLowess::compute (size_t num_points, const Data_ *x, const Data_ *y, const Options< Data_ > &opt) |
Compute the LOWESS trend fit.