mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-27 17:50:04 +01:00
33 lines
1.1 KiB
C++
33 lines
1.1 KiB
C++
#ifndef PROBABILITE_UNIFORM_LAW_H
|
|
#define PROBABILITE_UNIFORM_LAW_H
|
|
|
|
#include "two_parameter_law.h"
|
|
|
|
namespace Probability {
|
|
|
|
class UniformLaw final : public TwoParameterLaw {
|
|
public:
|
|
UniformLaw() : TwoParameterLaw(-1.0f, 1.0f) {}
|
|
I18n::Message title() override { return I18n::Message::UniformLaw; }
|
|
Type type() const override { return Type::Uniform; }
|
|
bool isContinuous() const override { return true; }
|
|
float xMin() override;
|
|
float yMin() override;
|
|
float xMax() override;
|
|
float yMax() override;
|
|
I18n::Message parameterNameAtIndex(int index) override;
|
|
I18n::Message parameterDefinitionAtIndex(int index) override;
|
|
float evaluateAtAbscissa(float x) const override;
|
|
bool authorizedValueAtIndex(float x, int index) const override;
|
|
void setParameterAtIndex(float f, int index) override;
|
|
double cumulativeDistributiveFunctionAtAbscissa(double x) const override;
|
|
double cumulativeDistributiveInverseForProbability(double * probability) override;
|
|
private:
|
|
constexpr static float k_diracMaximum = 10.0f;
|
|
constexpr static float k_diracWidth = 0.005f;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|