#include <OpenMS/CONCEPT/Macros.h>
#include <vector>
#include <algorithm>
#include <functional>
Go to the source code of this file.
|
int | lowess (const std::vector< double > &x, const std::vector< double > &y, double f, int nsteps, double delta, std::vector< double > &result) |
| Computes a lowess smoothing fit on the input vectors. More...
|
|
int | lowess (const std::vector< double > &x, const std::vector< double > &y, std::vector< double > &result) |
| Computes a lowess smoothing fit on the input vectors with the recommended values. More...
|
|