klyn.math.NDArray.full
method
public static full(shape as ArrayList<Object>, value as T) as NDArray<T>:
DescriptionCreates a new NDArray filled with a given value.
dims = [2, 3]
a = NDArray<Int>.full(dims, 9)
print(a)
ReturnsA new filled NDArray. ```klyn dims = [2, 3] a = NDArray<Int>.full(dims, 9) print(a) ```