AutoPas  3.0.0
Loading...
Searching...
No Matches
Smoothing.h
Go to the documentation of this file.
1
7#pragma once
8
9#include <cstddef>
10#include <tuple>
11#include <vector>
12
14
15namespace autopas::smoothing {
16
26long smoothLastPoint(const std::vector<Evidence> &points, size_t pointsPerEstimation);
27
28} // namespace autopas::smoothing
Algorithms for creating a smooth function through a series of points.
Definition: namespaces.h:31
long smoothLastPoint(const std::vector< Evidence > &points, size_t pointsPerEstimation)
Calculates the smoothed y value for the last point in the given points according to the LOESS algorit...
Definition: Smoothing.cpp:117