-
Notifications
You must be signed in to change notification settings - Fork 15
less_than_equal
Chung Leong edited this page Jan 10, 2022
·
3 revisions
less_than_equal - Component-wise <= comparison
bool[] less_than_equal( float[] $x, float[] $y )
less_than_equal() compares each element in x with the corresponding element in y and returns the results in a boolean array. [all] or [any] can then be use to determine whether all or any elements in x are less than or equal to the corresponding elements in y.
x - The first array.
y - The second array.
An array of booleans containing the comparison results. The size of the return value will match that of the larger of x and y.
1.0 and above.