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.

Parameters
ParameterDescription
shapeDimensions as objects converted to integers.
valueValue written in every cell.
Returns

A new filled NDArray.

Example
dims = [2, 3]
a = NDArray<Int>.full(dims, 9)
print(a)