Files
Upsilon/apps/probability/law/exponential_law.cpp
2019-01-10 11:42:04 +01:00

64 lines
1.4 KiB
C++

#include "exponential_law.h"
#include <cmath>
#include <float.h>
namespace Probability {
float ExponentialLaw::xMin() {
return - k_displayLeftMarginRatio * xMax();
}
float ExponentialLaw::yMin() {
return -k_displayBottomMarginRatio * yMax();
}
float ExponentialLaw::xMax() {
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() {
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 {
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;
}
}