norms_dist1D()

Returns the standard normal distribution: either its probability density function (pdf), or cumulative distribution function (cdf)

Syntax
y = norms_dist1D(data, is_cdf)

Arguments
Name Description Range Type Default Required
data number or a one-dimensional data (-∞, ∞) real yes
is_cdf specifies cdf or pdf of standard normal distribution [0, ∞) † integer 0 no
† When is_cdf is not equal to "0", the function returns the cdf of the standard normal distribution. Otherwise, it returns the pdf of the standard normal distribution

Examples

X = 0.5
X_pdf = norms_dist1D(X, 0)
X_cdf = norms_dist1D(X,1)
XX = [-3.9::0.1::3.9]
XX_pdf = norms_dist1D(XX,0)
XX_cdf = norms_dist1D(XX,1)

Defined in

$HPEESOF_DIR/expressions/ael/statistical_fun.ael

See Also

norm_dist1D(), norm_dist_inv1D(), norms_dist_inv1D(), lognorm_dist_inv1D(), lognorm_dist1D(), uniform_dist_inv1D(), uniform_dist1D()

 

Privacy Statement  | Terms of Use  | Legal | Contact Us  | © Agilent 2000-2008 

Contents
Additional Resources