uniform_dist1D()
Returns a uniform distribution: either its probability density function (pdf), or cumulative distribution function (cdf)
Syntax
y = uniform_dist1D(data, A, B, is_cdf)
Arguments
| Name | Description | Range | Type | Default | Required |
|---|---|---|---|---|---|
| data | number or a one-dimensional data | (-∞, ∞) | integer, real | yes | |
| A | uniform distributed range | [0, ∞) | integer, real | yes | |
| B | uniform distributed range | [0, ∞) | integer, real | yes | |
| is_cdf | specifies cdf or pdf of standard uniform distribution | [0, ∞) † | integer | 0 | no |
| † When is_cdf is not equal to "0", the function returns the cdf of the uniform distribution. Otherwise, it returns the pdf of the uniform distribution | |||||
Examples
X = 0.5
X_pdf = uniform_dist1D(X, 0.0,1.0, 0)
X_cdf = uniform_dist1D(X,0.0,1.0, 1)
XX = [-3.9::0.1::3.9]
XX_pdf = uniform_dist1D(XX,0.0,5.0,0)
XX_cdf = uniform_dist1D(XX,0.0,5.0,1)
Defined in
$HPEESOF_DIR/expressions/ael/statistical_fun.ael
See Also
norm_dist1D(), norm_dist_inv1D(), norms_dist_inv1D(), norms_dist1D(), lognorm_dist_inv1D(), lognorm_dist1D(), uniform_dist_inv1D()
Privacy
Statement
|
Terms of Use
|
Legal |
Contact Us
|
© Agilent 2000-2008 ![]()