WeightedLowess
A C++ library for LOWESS with various weighting schemes
Loading...
Searching...
No Matches
Public Member Functions | Public Attributes | List of all members
WeightedLowess::Results< Data_ > Struct Template Reference

Store the smoothing results. More...

#include <compute.hpp>

Public Member Functions

 Results (size_t n)
 

Public Attributes

std::vector< Data_ > fitted
 
std::vector< Data_ > robust_weights
 

Detailed Description

template<typename Data_>
struct WeightedLowess::Results< Data_ >

Store the smoothing results.

Template Parameters
Data_Floating-point type for the data.

Constructor & Destructor Documentation

◆ Results()

template<typename Data_ >
WeightedLowess::Results< Data_ >::Results ( size_t  n)
inline
Parameters
nNumber of points.

Member Data Documentation

◆ fitted

template<typename Data_ >
std::vector<Data_> WeightedLowess::Results< Data_ >::fitted

Fitted values from the LOWESS smoother.

◆ robust_weights

template<typename Data_ >
std::vector<Data_> WeightedLowess::Results< Data_ >::robust_weights

Robustness weight for each point.


The documentation for this struct was generated from the following file: