Skip to content
Snippets Groups Projects
Commit a9d50977 authored by Stauder, Lucas's avatar Stauder, Lucas
Browse files

feat: WiSe 2024/25

parent f96c3f2c
No related branches found
No related tags found
No related merge requests found
#ifndef PROGAUT_UEBUNG6_HISTOGRAM_HPP
#define PROGAUT_UEBUNG6_HISTOGRAM_HPP
#include <vector>
int getMostFrequentValue(const std::vector<int>& data);
#endif // PROGAUT_UEBUNG6_HISTOGRAM_HPP
#ifndef PROGAUT_UEBUNG6_OUTLIERS_HPP
#define PROGAUT_UEBUNG6_OUTLIERS_HPP
#include <vector>
#include <cstddef>
#include <cmath>
double findNMin(const std::vector<double>& data, size_t n);
double findNMax(const std::vector<double>& data, size_t n);
std::vector<double> removeOutliers(std::vector<double> data, size_t n);
#endif // PROGAUT_UEBUNG6_OUTLIERS_HPP
#ifndef PROGAUT_UEBUNG6_STATISTICS_HPP
#define PROGAUT_UEBUNG6_STATISTICS_HPP
#include <vector>
#include <cstddef>
size_t countValuesNearMean(const std::vector<double>& data);
#endif // PROGAUT_UEBUNG6_STATISTICS_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment