Function Reference: ricernd

statistics: r = ricernd (s, sigma)
statistics: r = ricernd (s, sigma, rows)
statistics: r = ricernd (s, sigma, rows, cols, …)
statistics: r = ricernd (s, sigma, [sz])

Random arrays from the Rician distribution.

r = ricernd (s, sigma) returns an array of random numbers chosen from the Rician distribution with noncentrality parameter s and scale parameter sigma. The size of r is the common size of s and sigma. A scalar input functions as a constant matrix of the same size as the other inputs.

When called with a single size argument, ricernd returns 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 row vector of dimensions, sz.

Further information about the Rician distribution can be found at https://en.wikipedia.org/wiki/Rice_distribution

See also: ricecdf, riceinv, ricepdf, ricefit, ricelike, ricestat

Source Code: ricernd