You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spec/API_specification/elementwise_functions.md
+40-4Lines changed: 40 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -371,10 +371,6 @@ Calculates the division for each element `x1_i` of the input array `x1` with the
371
371
372
372
- divisor input array. Must be compatible with `x1` (see :ref:`broadcasting`).
373
373
374
-
-**out**: _Optional\[<array>]_
375
-
376
-
- output array. If provided, the output array must be compatible with the provided input arrays (see :ref:`broadcasting`). If not provided or is `None`, an uninitialized return array must be created and then filled with the result of each element-wise computation. Default: `None`.
377
-
378
374
#### Returns
379
375
380
376
-**out**: _<array>_
@@ -473,6 +469,26 @@ Rounds each element `x_i` of the input array `x` to the greatest (i.e., closest
473
469
474
470
- an array containing the rounded result for each element in `x`.
Rounds the result of dividing each element `x1_i` of the input array `x1` by the respective element `x2_i` of the input array `x2` to the greatest (i.e., closest to `+infinity`) integer-value number that is not greater than the division result.
475
+
476
+
#### Parameters
477
+
478
+
-**x1**: _<array>_
479
+
480
+
- dividend input array.
481
+
482
+
-**x2**: _<array>_
483
+
484
+
- divisor input array. Must be compatible with `x1` (see :ref:`broadcasting`).
0 commit comments