diff --git a/SimoxUtility/math/SoftMinMax.cpp b/SimoxUtility/math/SoftMinMax.cpp index 622c94ff3e1fbd7c32a78bd2c5b6dbf060a4e8c6..13272a937ee096217f7e87e5b7c1109dc4965a54 100644 --- a/SimoxUtility/math/SoftMinMax.cpp +++ b/SimoxUtility/math/SoftMinMax.cpp @@ -13,29 +13,29 @@ namespace simox::math reset(0, 1); } - SoftMinMax::SoftMinMax(float percentile, std::size_t numValues) + SoftMinMax::SoftMinMax(float quantile, std::size_t numValues) { - reset(percentile, numValues); + reset(quantile, numValues); } - void SoftMinMax::reset(float percentile, std::size_t numValues) + void SoftMinMax::reset(float quantile, std::size_t numValues) { minQueue = MinQueue(); maxQueue = MaxQueue(); - if (percentile < 0 || percentile > 0.5f) + if (quantile < 0 || quantile > 0.5f) { std::stringstream msg; - msg << "percentile must be in [0, 0.5], but was " << percentile << "."; + msg << "The quantile must be in [0, 0.5], but was " << quantile << "."; throw std::invalid_argument(msg.str()); } if (numValues == 0) { std::stringstream msg; - msg << "numValues must be > 0, but was " << numValues; + msg << "The numValues must be > 0, but was " << numValues; throw std::invalid_argument(msg.str()); } - this->percentile = percentile; + this->quantile = quantile; this->num_elements = numValues; allowed_heap_size_cache = allowedHeapSize(); @@ -99,7 +99,7 @@ namespace simox::math std::size_t SoftMinMax::numOutsideSoftMinMax() const { - return size_t(std::ceil(percentile * num_elements)); + return size_t(std::ceil(quantile * num_elements)); } std::size_t SoftMinMax::allowedHeapSize() const diff --git a/SimoxUtility/math/SoftMinMax.h b/SimoxUtility/math/SoftMinMax.h index 97122d50e3426e8f431baada71a4c68e76fc7943..c19097ec516c382dbe893816cdb7bdb8a4656de6 100644 --- a/SimoxUtility/math/SoftMinMax.h +++ b/SimoxUtility/math/SoftMinMax.h @@ -11,7 +11,7 @@ namespace simox::math * * Soft means that some values are allowed to be >= soft min / <= soft max * (including the soft min/max), respectively. - * A percentile argument in [0..0.5] specifies the percentage of values + * A quantile parameter in [0..0.5] specifies the proportion of values * which are allowed to excess the soft min/max. */ class SoftMinMax @@ -22,16 +22,16 @@ namespace simox::math SoftMinMax(); /** - * @brief Constructs a SoftMinMax for given percentile and number of values. + * @brief Constructs a SoftMinMax for given quantile and number of values. * - * @param percentile - * The percentage of values that may excess the soft min/max. Must be in [0..0.5]. + * @param quantile + * The proportion of values that may excess the soft min/max. Must be in [0..0.5]. * @param numValues the total number of values that will be added. Must be > 0. * * @throws `std::invalid_argument` * If one of the parameters value does not meet the requirements */ - SoftMinMax(float percentile, std::size_t numValues); + SoftMinMax(float quantile, std::size_t numValues); /** * Reinitializes the SoftMinMax with the given arguments. @@ -39,7 +39,7 @@ namespace simox::math * @throws `std::invalid_argument` * If one of the parameters value does not meet the requirements. */ - void reset(float percentile, std::size_t numValues); + void reset(float quantile, std::size_t numValues); /// Add a value to the considered collection. /// @note Only values excessing the current soft min/max are stored. @@ -62,8 +62,8 @@ namespace simox::math std::size_t allowedHeapSize() const; - /// The percentile in [0, 0.5]. - float percentile = 0; + /// The quantile in [0, 0.5]. + float quantile = 0; /// The number of elements to be added. std::size_t num_elements = 0;