Rayleigh distribution constructor.
scale parameter (default: 1.0)
distribution instance
var rayleigh = new Rayleigh( 1.0 );
var y = rayleigh.cdf( 0.8 );
// returns ~0.274
var v = rayleigh.mode;
// returns 1.0
Read-only property which returns the differential entropy.
Read-only property which returns the excess kurtosis.
Read-only property which returns the expected value.
Read-only property which returns the median.
Read-only property which returns the mode.
Scale parameter. If set, the value must be greater than 0
.
Read-only property which returns the skewness.
Read-only property which returns the standard deviation.
Read-only property which returns the variance.
Evaluates the cumulative distribution function (CDF).
input value
evaluated CDF
Evaluates the natural logarithm of the cumulative distribution function (CDF).
input value
evaluated logCDF
Evaluates the natural logarithm of the probability density function (PDF).
input value
evaluated logPDF
Evaluates the moment-generating function (MGF).
input value
evaluated MGF
Evaluates the probability density function (PDF).
input value
evaluated PDF
Evaluates the quantile function at probability p
.
input probability
evaluated quantile function
Rayleigh distribution.