Description of a variety of different statistical distribution. More...
#include "DistributionDescription.hpp"
Public Types | |
enum | Distribution { none, normal, chiSquare, exponential, fisher, poisson, rayleigh, students } |
supported distributions More... | |
enum | Value { nummeric, min, max, mean, median, mode, stdDev, stdDevMAD, rms, skewness } |
supported distributions | |
Public Member Functions | |
DistributionDescription (const opals::String &rep) | |
DistributionDescription (Distribution type, double param1) | |
initialize single parameter distributions | |
DistributionDescription (Distribution type, Value param1) | |
initialize single parameter distributions | |
DistributionDescription (Distribution type, double param1, double param2) | |
initialize dual parameter distributions | |
DistributionDescription (Distribution type, Value param1, double param2) | |
initialize dual parameter distributions | |
DistributionDescription (Distribution type, Value param1, Value param2) | |
initialize dual parameter distributions | |
bool | isEmpty () const |
void | reset () |
Distribution | getDistribution () const |
unsigned | getParamCount () const |
double | getParamValue (unsigned idx) const |
Value | getParamType (unsigned idx) const |
DistributionDescription | copyFill (double min, double max, double mean, double median, double mode, double stdDev, double stdDevMAD, double rms, double skewness) const |
creates new DistributionDescription object and fill in all non numeric parameters with the given values | |
void | setDistribution (Distribution type) |
void | setParam (unsigned degrees_of_freedom1) |
void | setParam (unsigned degrees_of_freedom1, unsigned degrees_of_freedom2) |
void | setParam (double param1) |
void | setParam (Value param1, Value param2) |
void | setParam (Value param1, double param2) |
void | setParam (double param1, double param2) |
void | setParam (double param1, Value param2) |
void | validate () const |
validates combination of parameters and throws exception if they are invalid | |
void | setNormal (Value mean, Value stdDev) |
void | setNormal (Value mean, double stdDev) |
void | setNormal (double mean, double stdDev) |
void | setNormal (double mean, Value stdDev) |
void | setChiSquare (unsigned degrees_of_freedom) |
void | setExponential (double lambda) |
void | setExponential (Value lambda) |
void | setFisher (unsigned degrees_of_freedom1, unsigned degrees_of_freedom2) |
void | setPoisson (double mean) |
void | setPoisson (Value mean) |
void | setRayleigh (Value sigma) |
void | setStudents (unsigned degrees_of_freedom) |
Static Public Member Functions | |
static const char * | help (bool) |
static const char * | syntax () |
static bool | exportsPythonType () |
![]() | |
static const char * | _help (bool forDoxygen) |
get general help on this type | |
static const char * | _syntax () |
get the syntax used for parsing this type | |
static bool | _exportsPythonType () |
returns true if this type is exposed to Python as a custom type, false otherwise (if it is represented as Python-string) | |
Protected Member Functions | |
void | clearParam () |
void | addValue (Value v) |
void | addValue (double v) |
void | addValue (unsigned v) |
![]() | |
~CustomOptionType () | |
protected, must be derived from | |
Protected Attributes | |
Distribution | distribution |
opals::Vector< Value > | valueTypes |
opals::Vector< double > | nummericValues |
Friends | |
struct | DistributionDescriptionAccess |
Description of a variety of different statistical distribution.
|
strong |
supported distributions