Function Reference: logistic_cdf

statistics: p = logistic_cdf (x)
statistics: p = logistic_cdf (x, mu)
statistics: p = logistic_cdf (x, mu, scale)

Logistic cumulative distribution function (CDF).

For each element of x, compute the cumulative distribution function (CDF) at x of the logistic distribution with mean mu and scale parameter scale. The size of p is the common size of x, mu, and scale. A scalar input functions as a constant matrix of the same size as the other inputs.

Default values are mu = 0, beta = 1. Both parameters must be reals and beta > 0. For beta <= 0, NaN is returned.

See also: logistic_inv, logistic_pdf, logistic_rnd

Source Code: logistic_cdf