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 logical AND for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`. Zeros should be considered the equivalent of `False`, while non-zeros should be considered the equivalent of `True`.
400
+
401
+
#### Parameters
402
+
403
+
-**x1**: _<array>_
404
+
405
+
- first input array.
406
+
407
+
-**x2**: _<array>_
408
+
409
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
410
+
411
+
-**out**: _Optional\[<array>]_
412
+
413
+
- 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 logical NOT for each element `x_i` of the input array `x`. Zeros should be considered the equivalent of `False`, while non-zeros should be considered the equivalent of `True`.
424
+
425
+
#### Parameters
426
+
427
+
-**x**: _<array>_
428
+
429
+
- input array.
430
+
431
+
-**out**: _Optional\[<array>]_
432
+
433
+
- output array. If provided, the output array must be compatible with the provided input array `x` (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 logical OR for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`. Zeros should be considered the equivalent of `False`, while non-zeros should be considered the equivalent of `True`.
444
+
445
+
#### Parameters
446
+
447
+
-**x1**: _<array>_
448
+
449
+
- first input array.
450
+
451
+
-**x2**: _<array>_
452
+
453
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
454
+
455
+
-**out**: _Optional\[<array>]_
456
+
457
+
- 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 logical XOR for each element `x1_i` of the input array `x1` with the respective element `x2_i` of the input array `x2`. Zeros must should be considered the equivalent of `False`, while non-zeros must should be considered the equivalent of `True`.
468
+
469
+
#### Parameters
470
+
471
+
-**x1**: _<array>_
472
+
473
+
- first input array.
474
+
475
+
-**x2**: _<array>_
476
+
477
+
- second input array. Must be compatible with `x1` (see :ref:`broadcasting`).
478
+
479
+
-**out**: _Optional\[<array>]_
480
+
481
+
- 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