Overload List
| # | Signature | Description |
|---|---|---|
| 1 | procedure UniformPDF(const X: TDenseMtxVec; A: Double; B: Double; const Res: TDenseMtxVec); | Uniform distribution PDF (vectorized). |
| 2 | function UniformPDF(x: Double; a: Double; b: Double): Double; | Uniform probability density function (PDF). |
Overload 1: procedure UniformPDF(const X: TDenseMtxVec; A: Double; B: Double; const Res: TDenseMtxVec);
Uniform distribution PDF (vectorized).
| # | Name | Description |
|---|---|---|
| 1 | X | Defines distribution domain, real vector or matrix with values on closed interval [A,B]. |
| 2 | A | Distribution parameter, real value, defining distribution lower bound. |
| 3 | B | Distribution parameter, real value, defining distribution upper bound. |
| 4 | Res | After calculation stores the PDF calculated from X, A and B. Length and Complex properties of Res are adjusted automatically to match Length and Complex properties of X. |
Result: stored in self (calling object)
Overload 2: function UniformPDF(x: Double; a: Double; b: Double): Double;
Uniform probability density function (PDF).
| # | Name | Description |
|---|---|---|
| 1 | x | Distribution domain, real value on closed interval [a,b]. |
| 2 | a | Distribution lower bound, real value. |
| 3 | b | Distribution upper bound, real value (b > a). |
Returns: Double - the uniform probability density function (PDF) for value x using the parameters a and b. a must be smaller than b, otherwise the result is NAN.
Remarks:
The continuous uniform probability density function is
PDF(x| a,b)=1/(b-a), a <= x <= b
and 0 outside [a, b]. Domain: a < b; x within [a, b]. For a >= b the result is NAN.