logistic_rnd
Random arrays from the logistic distribution.
r = logistic_rnd (mu, scale)
returns an array of
random numbers chosen from the logistic distribution with parameters mu
and scale. The size of r is the common size of mu and
scale. A scalar input functions as a constant matrix of the same size
as the other inputs. Both parameters must be reals and scale > 0. For
scale <= 0, NaN is returned.
When called with a single size argument, return a square matrix with the dimension specified. When called with more than one scalar argument the first two arguments are taken as the number of rows and columns and any further arguments specify additional matrix dimensions. The size may also be specified with a vector of dimensions sz.
See also: logistic_cdf, logistic_inv, logistic_pdf
Source Code: logistic_rnd