klyn.math.NDArray.full
method
public static full(shape as ArrayList<Object>, value as T) as NDArray<T>:
Description
Creates a new NDArray filled with a given value.
dims = [2, 3]
a = NDArray<Int>.full(dims, 9)
print(a)
Parameters
  • shape Dimensions as objects converted to integers.
  • value Value written in every cell.
Returns
A new filled NDArray. ```klyn dims = [2, 3] a = NDArray<Int>.full(dims, 9) print(a) ```