📄️ NDArray::ceil
Rounds the elements of an array to the nearest integer greater than or equal to the element,
📄️ NDArray::fix
Rounds the elements of an array towards zero, returning a new array with the elements rounded towards zero.
📄️ NDArray::floor
Rounds the elements of an array to the nearest integer less than or equal to the element,
📄️ NDArray::rint
Rounds the elements of an array to the nearest integer,
📄️ NDArray::round
Rounds the elements of an array to the nearest integer,
📄️ NDArray::trunc
Truncates the elements of an array towards zero, returning a new array with the elements truncated towards zero.