📄️ NDArray::abs
Computes the element-wise absolute value of an array, returning a new array with non-negative elements.
📄️ NDArray::clip
Clips the values of an array between a minimum and maximum value, returning
📄️ NDArray::reciprocal
Return the reciprocal of the argument, element-wise.
📄️ NDArray::sign
Computes the element-wise sign of an array, returning a new array
📄️ NDArray::sinc
Calculates the element-wise sinc function of an array,
📄️ NDArray::sqrt
Calculates the element-wise square root of an array, returning a new array with the positive square root of each element.
📄️ NDArray::square
Computes the element-wise square of an array, returning a new array with each element squared.