NDArray::less
public static function less(NDArray|array|float|int $a, NDArray|array|float|int $b): NDArray;
Performs an element-wise less-than comparison between two arrays and returns a new array of the same shape. The result will be 1 where the elements in the first array are less than the corresponding elements in the second array, and 0 otherwise.
Notes
tip
GPU SUPPORTED
This operation is supported by GPU (VRAM) and contains a custom CUDA kernel.