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
Computes the truth value of `x1_i == x2_i` for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`.
326
+
327
+
#### Parameters
328
+
329
+
-**x1**: _<array>_
330
+
331
+
- first input array.
332
+
333
+
-**x2**: _<array>_
334
+
335
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
336
+
337
+
-**out**: _Optional\[<array>]_
338
+
339
+
- 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, whose underlying data type is `bool`, must be created and then filled with the result of each element-wise computation. Default: `None`.
340
+
341
+
#### Returns
342
+
319
343
-**out**: _<array>_
320
344
321
345
- an array containing the element-wise results.
@@ -368,6 +392,102 @@ Rounds each element `x_i` of the input array `x` to the greatest (i.e., closest
368
392
369
393
- an array containing the rounded result for each element in `x`.
Computes the truth value of `x1_i > x2_i` for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`.
398
+
399
+
#### Parameters
400
+
401
+
-**x1**: _<array>_
402
+
403
+
- first input array.
404
+
405
+
-**x2**: _<array>_
406
+
407
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
408
+
409
+
-**out**: _Optional\[<array>]_
410
+
411
+
- 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, whose underlying data type is `bool`, must be created and then filled with the result of each element-wise computation. Default: `None`.
Computes the truth value of `x1_i >= x2_i` for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`.
422
+
423
+
#### Parameters
424
+
425
+
-**x1**: _<array>_
426
+
427
+
- first input array.
428
+
429
+
-**x2**: _<array>_
430
+
431
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
432
+
433
+
-**out**: _Optional\[<array>]_
434
+
435
+
- 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, whose underlying data type is `bool`, must be created and then filled with the result of each element-wise computation. Default: `None`.
Computes the truth value of `x1_i < x2_i` for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`.
446
+
447
+
#### Parameters
448
+
449
+
-**x1**: _<array>_
450
+
451
+
- first input array.
452
+
453
+
-**x2**: _<array>_
454
+
455
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
456
+
457
+
-**out**: _Optional\[<array>]_
458
+
459
+
- 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, whose underlying data type is `bool`, must be created and then filled with the result of each element-wise computation. Default: `None`.
Computes the truth value of `x1_i <= x2_i` for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`.
470
+
471
+
#### Parameters
472
+
473
+
-**x1**: _<array>_
474
+
475
+
- first input array.
476
+
477
+
-**x2**: _<array>_
478
+
479
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
480
+
481
+
-**out**: _Optional\[<array>]_
482
+
483
+
- 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, whose underlying data type is `bool`, must be created and then filled with the result of each element-wise computation. Default: `None`.
Calculates an implementation-dependent approximation to the natural (base `e`) logarithm, having domain `[0, +infinity]` and codomain `[-infinity, +infinity]`, for each element `x_i` of the input array `x`.
@@ -512,6 +632,30 @@ Calculates the product for each element `x1_i` of the input array `x1` with the
Computes the truth value of `x1_i != x2_i` for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`.
638
+
639
+
#### Parameters
640
+
641
+
-**x1**: _<array>_
642
+
643
+
- first input array.
644
+
645
+
-**x2**: _<array>_
646
+
647
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
648
+
649
+
-**out**: _Optional\[<array>]_
650
+
651
+
- 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, whose underlying data type is `bool`, must be created and then filled with the result of each element-wise computation. Default: `None`.
0 commit comments