WeightedLowess
A C++ library for LOWESS with various weighting schemes
Loading...
Searching...
No Matches
Classes | Namespaces | Functions
compute.hpp File Reference

Compute the LOWESS trend fit. More...

#include <vector>
#include "fit.hpp"
#include "Options.hpp"
Include dependency graph for compute.hpp:
This graph shows which files directly or indirectly include this file:

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)
 

Detailed Description

Compute the LOWESS trend fit.