Syntax: rand(nrow, ncol)**
Description: Creates a matrix with random numbers in the range [0-1]; If x,y* are given , creates a matrix with the dimension x (rows) and y (columns). If* only x is given, creates a vector of size "x"*
Group: random**
Note: **
Example:
random(100) % creates a vector with size 100.* rand(50,60) % matrix 50x60 will be filled.**
Also see: beta
Implemented in: LambdaRAND.java