|
| template<class ForwardIt > |
| constexpr auto | Min (ForwardIt first, ForwardIt last) -> Optional< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| constexpr auto | Max (ForwardIt first, ForwardIt last) -> Optional< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class Type = double, class ForwardIt > |
| constexpr Type | Mean (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | Median (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr auto | LowMedian (ForwardIt first, ForwardIt last) -> Optional< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| constexpr auto | HighMedian (ForwardIt first, ForwardIt last) -> Optional< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| auto | Mode (ForwardIt first, ForwardIt last) -> Optional< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| auto | Mode (ForwardIt first, ForwardIt last, size_t &count) -> Optional< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| auto | MultiMode (ForwardIt first, ForwardIt last) -> Array< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| auto | MultiMode (ForwardIt first, ForwardIt last, size_t &count) -> Array< typename std::iterator_traits< ForwardIt >::value_type > |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | PopulationVariance (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | PopulationVariance (ForwardIt first, ForwardIt last, double mu) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | Variance (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | Variance (ForwardIt first, ForwardIt last, double xbar) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | PopulationStandardDeviation (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | PopulationStandardDeviation (ForwardIt first, ForwardIt last, double mu) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | StandardDeviation (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | StandardDeviation (ForwardIt first, ForwardIt last, double xbar) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | Kurtosis (ForwardIt first, ForwardIt last) |
| |
| template<class ForwardIt > |
| constexpr Optional< double > | Skewness (ForwardIt first, ForwardIt last) |
| |