Files
Upsilon/apps/probability/law/exponential_law.cpp
2019-08-08 17:22:04 +02:00

63 lines
1.3 KiB
C++

#include "exponential_law.h"
#include <cmath>
#include <float.h>
namespace Probability {
float ExponentialLaw::xMin() const {
return - k_displayLeftMarginRatio * xMax();
}
float ExponentialLaw::xMax() const {
assert(m_parameter1 != 0.0f);
float result = 5.0f/m_parameter1;
if (result <= 0.0f) {
result = 1.0f;
}
return result * (1.0f + k_displayRightMarginRatio);
}
float ExponentialLaw::yMax() const {
float result = m_parameter1;
if (result <= 0.0f || std::isnan(result)) {
result = 1.0f;
}
if (result <= 0.0f) {
result = 1.0f;
}
return result * (1.0f + k_displayTopMarginRatio);
}
float ExponentialLaw::evaluateAtAbscissa(float x) const {
if (x < 0.0f) {
return NAN;
}
return m_parameter1 * std::exp(-m_parameter1 * x);
}
bool ExponentialLaw::authorizedValueAtIndex(float x, int index) const {
if (x <= 0.0f || x > 7500.0f) {
return false;
}
return true;
}
double ExponentialLaw::cumulativeDistributiveFunctionAtAbscissa(double x) const {
if (x < 0.0) {
return 0.0;
}
return 1.0 - std::exp((double)(-m_parameter1 * x));
}
double ExponentialLaw::cumulativeDistributiveInverseForProbability(double * probability) {
if (*probability >= 1.0) {
return INFINITY;
}
if (*probability <= 0.0) {
return 0.0;
}
return -std::log(1.0 - *probability)/(double)m_parameter1;
}
}