📄️ NDArray::arange
Return evenly spaced values within a given interval.
📄️ NDArray::array
Creates a new NDArray from a PHP array. It is the equivalent of new NDArray($array);
📄️ NDArray::full
Return a new array of given shape and type, filled with $fill_value.
📄️ NDArray::identity
This function returns a square array, where the main diagonal consists of ones and all other
📄️ NDArray::ones
The function creates a new NDArray with the specified shape, filled with ones.
📄️ NDArray::zeros
The function creates a new NDArray with the specified shape, filled with zeros.