Skip to content
Snippets Groups Projects
Select Git revision
  • 50a7abd19e1a3ff86307c333be5e7a8ef346e949
  • main default protected
  • vac_in_initial_conditions
3 results

doxyfile

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