Initializes a random matrix.
The number of rows or (if the cols parameter is blank) the number of rows or columns (the size)
Optional
The number of columns
The lower bound
The upper bound
const result = Chalkboard.matr.random(3, 3, -1, 1); // Returns a random 3-by-3 matrix Copy
const result = Chalkboard.matr.random(3, 3, -1, 1); // Returns a random 3-by-3 matrix
Initializes a random matrix.