klyn.math.NDArray.randint
method
public static randint(min as T, max as T, 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
  • min Lower bound (inclusive).
  • max Upper bound (inclusive).
  • shape Fixed-size tuple of dimensions.
Returns
A random NDArray.