Member of the statistics class.
rand('seed')
rand('seed', s)
c = rand
d = rand('seed')
c = rand(a)
c = rand(a, b)
c = rand([a, b])
Generates uniformly distributed pseudorandom numbers in the interval [0, 1]. rand('seed') returns the seed of the pseudorandom number generator. rand('seed', s) sets the seed of the pseudorandom number generator to s. LabVIEW uses this seed to generate a pseudorandom number for the next call to the rand function. c = rand generates a single pseudorandom number. c = rand(a, b) is equivalent to c = rand([a, b]).
| Name | Description |
| a | Specifies the number of rows in c. a is a positive integer. |
| b | Specifies the number of columns in c. b is a positive integer. |
| s | Specifies the seed of the pseudorandom number generator to use for the next call to the rand function. |
| Name | Description |
| c | Returns an a-by-b matrix of uniformly distributed pseudorandom numbers in the interval [0, 1]. If you do not specify b, c returns a square matrix of length a. |
| d | Returns the seed of the pseudorandom number generator. |
A = [3, 4]
C = rand(A)
S = rand('seed')
X = rand(10);
rand('seed', S)
Y = rand(10);