xrand
xrand(
@a 1
@b null
) -> float
Seed-based random floating point number generator. See setseed.
Arguments
@a[int/float]: Max. value if@bisnull, else min. value. (default:1).@b[int/float/null]: Max. value. (default:null).
Output
Random number [float]
Usage
setseed(13);
for $i in 1...10 collect print(xrand(0, 1))