Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double CauchyCDF(double x, double m, double b); | Cauchy cumulative distribution function (CDF). |
| 2 | void CauchyCDF(TDenseMtxVec *X, double m, double b, TDenseMtxVec *Res); | Cauchy CDF (vectorized). |
Overload 1: double CauchyCDF(double x, double m, double b);
Cauchy cumulative distribution function (CDF).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | x | double | Function domain, real value. |
| 2 | m | double | Location parameter, real value. |
| 3 | b | double | Shape (scale) parameter, real positive value. |
Returns: the Cauchy cumulative distribution function (CDF). Parameter b must be positive, otherwise the result is NAN.
Remarks:
The Cauchy cumulative distribution function is
CDF(x| m,b)=1/2+1/piarctan((x-m)/b)
Domain: x is any real value, m any real value, scale b > 0. The result lies in the open interval (0,1) and increases monotonically. For b <= 0 the result is NAN.
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler
Overload 2: void CauchyCDF(TDenseMtxVec *X, double m, double b, TDenseMtxVec *Res);
Cauchy CDF (vectorized).
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TDenseMtxVec * | Defines distribution domain, real vector or matrix. |
| 2 | m | double | Location parameter, real value. |
| 3 | b | double | Shape parameter, real positive value. |
| 4 | Res | TDenseMtxVec * | After calculation stores the CDF calculated from X, m and b. Length and Complex properties of Res are adjusted automatically to match Length and Complex properties of X. |
Declared in Dew::Math::Units::Probabilities · Dew.Math/Units.Probabilities.h · Cross-compiler