public static zeros(shape as ArrayList<Object>) as NDArray<T>:
Creates a new NDArray with zeros.
A new NDArray filled with 0. klyn dims = [2, 3] a = NDArray<Int>.zeros(dims) print(a.shape)
0
klyn dims = [2, 3] a = NDArray<Int>.zeros(dims) print(a.shape)