Skip to content
Snippets Groups Projects
Select Git revision
  • a9d50977812d28f6269f406544a501f7b41c7943
  • master default protected
2 results

outliers.hpp

Blame
  • outliers.hpp 363 B
    #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