klyn.math.NDArray.randint
method
public static randint(min as Int, max as Int, shape as Tuple) as NDArray<T>:
Description

Creates a NDArray with random integers in [min, max] using a tuple shape.

a = NDArray<Int>.randint(1, 3, (2, 2))
print(a)
Parameters
ParameterDescription
minLower bound (inclusive).
maxUpper bound (inclusive).
shapeFixed-size tuple of dimensions.
Returns

A random NDArray.