Statistics::UniformFit Function

Overload List

#SignatureDescription
1void UniformFit(TVec *X, double &low, double &high);Calculate parameters for uniformly distributed values.
2void UniformFit(TVec *X, double &low, double &high, DewArray<double> &PCILow, DewArray<double> &PCIHigh, double Alpha = 0.05);Calculate parameters for uniformly distributed values.

Overload 1: void UniformFit(TVec *X, double &low, double &high);

Calculate parameters for uniformly distributed values.

#NameTypeDescription
1XTVec *
2lowdouble &
3highdouble &
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler

Overload 2: void UniformFit(TVec *X, double &low, double &high, DewArray<double> &PCILow, DewArray<double> &PCIHigh, double Alpha = 0.05);

Calculate parameters for uniformly distributed values.

#NameTypeDescription
1XTVec *Stores data which is assumed to be uniformly distributed.
2lowdouble &Return uniform distribution parameter estimator Low.
3highdouble &Return uniform distribution parameter estimator High.
4PCILowDewArray<double> &Low (1-Alpha)*100 percent confidence interval.
5PCIHighDewArray<double> &High (1-Alpha)*100 percent confidence interval.
6Alpha = 0.05doubleConfidence interval percentage.
See Also: RandomUniform, UniformStat
Declared in Dew::Stats::Units::Statistics · Dew.Stats/Units.Statistics.h · Cross-compiler