| Library: | distribs |
| See also: | pdfBurr cdfBurr |
| Quantlet: | rndBurr | |
| Description: | generates a vector of pseudo random variables with Burr distribution. |
| Usage: | y = rndBurr (n, m, alpha, lambda, tau) | |
| Input: | ||
| n | integer, number of rows | |
| m | integer, number of columns | |
| alpha | scalar, parameter of Burr distribution | |
| lambda | scalar, parameter of Burr distribution | |
| tau | scalar, parameter of Burr distribution | |
| Output: | ||
| y | n x m matrix, pseudo random numbers | |
library("xplore")
library("distribs")
randomize(100)
rndBurr(3,2,3,2,1)
Contents of y [1,] 3.6982 0.20442 [2,] 1.6042 1.1285 [3,] 2.9279 0.1749