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
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
512
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). May have any data type.
513
513
514
514
#### Returns
515
515
@@ -548,11 +548,11 @@ Evaluates `self_i // other_i` for each element of an array instance with the res
548
548
549
549
-**self**: _<array>_
550
550
551
-
- array instance.
551
+
- array instance. Should have a numeric data type.
552
552
553
-
-**other**: _<array>_
553
+
-**other**: _Union\[ int, float, <array>]_
554
554
555
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
555
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
556
556
557
557
#### Returns
558
558
@@ -574,11 +574,11 @@ Computes the truth value of `self_i >= other_i` for each element of an array ins
574
574
575
575
-**self**: _<array>_
576
576
577
-
- array instance.
577
+
- array instance. Should have a numeric data type.
578
578
579
-
-**other**: _<array>_
579
+
-**other**: _Union\[ int, float, <array>]_
580
580
581
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
581
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
582
582
583
583
#### Returns
584
584
@@ -621,11 +621,11 @@ Computes the truth value of `self_i > other_i` for each element of an array inst
621
621
622
622
-**self**: _<array>_
623
623
624
-
- array instance.
624
+
- array instance. Should have a numeric data type.
625
625
626
-
-**other**: _<array>_
626
+
-**other**: _Union\[ int, float, <array>]_
627
627
628
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
628
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
629
629
630
630
#### Returns
631
631
@@ -664,7 +664,7 @@ Evaluates `~self_i` for each element of an array instance.
664
664
665
665
-**self**: _<array>_
666
666
667
-
- array instance. Must have an integer or boolean data type.
667
+
- array instance. Should have an integer or boolean data type.
668
668
669
669
#### Returns
670
670
@@ -686,11 +686,11 @@ Computes the truth value of `self_i <= other_i` for each element of an array ins
686
686
687
687
-**self**: _<array>_
688
688
689
-
- array instance.
689
+
- array instance. Should have a numeric data type.
690
690
691
-
-**other**: _<array>_
691
+
-**other**: _Union\[ int, float, <array>]_
692
692
693
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
693
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
694
694
695
695
#### Returns
696
696
@@ -717,11 +717,11 @@ Evaluates `self_i << other_i` for each element of an array instance with the res
717
717
718
718
-**self**: _<array>_
719
719
720
-
- array instance. Must have an integer data type.
720
+
- array instance. Should have an integer data type.
721
721
722
-
-**other**: _<array>_
722
+
-**other**: _Union\[ int, <array>]_
723
723
724
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Must have an integer data type. Each element must be greater than or equal to `0`.
724
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have an integer data type. Each element must be greater than or equal to `0`.
725
725
726
726
#### Returns
727
727
@@ -743,11 +743,11 @@ Computes the truth value of `self_i < other_i` for each element of an array inst
743
743
744
744
-**self**: _<array>_
745
745
746
-
- array instance.
746
+
- array instance. Should have a numeric data type.
747
747
748
-
-**other**: _<array>_
748
+
-**other**: _Union\[ int, float, <array>]_
749
749
750
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
750
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
751
751
752
752
#### Returns
753
753
@@ -790,11 +790,11 @@ Evaluates `self_i % other_i` for each element of an array instance with the resp
790
790
791
791
-**self**: _<array>_
792
792
793
-
- array instance.
793
+
- array instance. Should have a numeric data type.
794
794
795
-
-**other**: _<array>_
795
+
-**other**: _Union\[ int, float, <array>]_
796
796
797
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
797
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
798
798
799
799
#### Returns
800
800
@@ -835,11 +835,11 @@ Floating-point multiplication is not always associative due to finite precision.
835
835
836
836
-**self**: _<array>_
837
837
838
-
- array instance.
838
+
- array instance. Should have a numeric data type.
839
839
840
-
-**other**: _<array>_
840
+
-**other**: _Union\[ int, float, <array>]_
841
841
842
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
842
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
843
843
844
844
#### Returns
845
845
@@ -861,11 +861,11 @@ Computes the truth value of `self_i != other_i` for each element of an array ins
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
868
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). May have any data type.
869
869
870
870
#### Returns
871
871
@@ -887,7 +887,7 @@ Evaluates `-self_i` for each element of an array instance.
887
887
888
888
-**self**: _<array>_
889
889
890
-
- array instance.
890
+
- array instance. Should have a numeric data type.
891
891
892
892
#### Returns
893
893
@@ -909,11 +909,11 @@ Evaluates `self_i | other_i` for each element of an array instance with the resp
909
909
910
910
-**self**: _<array>_
911
911
912
-
- array instance. Must have an integer or boolean data type.
912
+
- array instance. Should have an integer or boolean data type.
913
913
914
-
-**other**: _<array>_
914
+
-**other**: _Union\[ int, bool, <array>]_
915
915
916
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Must have an integer or boolean data type.
916
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have an integer or boolean data type.
917
917
918
918
#### Returns
919
919
@@ -935,7 +935,7 @@ Evaluates `+self_i` for each element of an array instance.
935
935
936
936
-**self**: _<array>_
937
937
938
-
- array instance.
938
+
- array instance. Should have a numeric data type.
939
939
940
940
#### Returns
941
941
@@ -986,11 +986,11 @@ For floating-point operands, let `self` equal `x1` and `other` equal `x2`.
986
986
987
987
-**self**: _<array>_
988
988
989
-
- array instance whose elements correspond to the exponentiation base.
989
+
- array instance whose elements correspond to the exponentiation base. Should have a numeric data type.
990
990
991
-
-**other**: _<array>_
991
+
-**other**: _Union\[ int, float, <array>]_
992
992
993
-
- other array whose elements correspond to the exponentiation exponent. Must be compatible with `self` (see {ref}`broadcasting`).
993
+
- other array whose elements correspond to the exponentiation exponent. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
994
994
995
995
#### Returns
996
996
@@ -1012,11 +1012,11 @@ Evaluates `self_i >> other_i` for each element of an array instance with the res
1012
1012
1013
1013
-**self**: _<array>_
1014
1014
1015
-
- array instance. Must have an integer data type.
1015
+
- array instance. Should have an integer data type.
1016
1016
1017
-
-**other**: _<array>_
1017
+
-**other**: _Union\[ int, <array>]_
1018
1018
1019
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Must have an integer data type. Each element must be greater than or equal to `0`.
1019
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have an integer data type. Each element must be greater than or equal to `0`.
1020
1020
1021
1021
#### Returns
1022
1022
@@ -1043,11 +1043,11 @@ Calculates the difference for each element of an array instance with the respect
1043
1043
1044
1044
-**self**: _<array>_
1045
1045
1046
-
- array instance (minuend array).
1046
+
- array instance (minuend array). Should have a numeric data type.
1047
1047
1048
-
-**other**: _<array>_
1048
+
-**other**: _Union\[ int, float, <array>]_
1049
1049
1050
-
- subtrahend array. Must be compatible with `self` (see {ref}`broadcasting`).
1050
+
- subtrahend array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
1051
1051
1052
1052
#### Returns
1053
1053
@@ -1096,11 +1096,11 @@ For floating-point operands, let `self` equal `x1` and `other` equal `x2`.
1096
1096
1097
1097
-**self**: _<array>_
1098
1098
1099
-
- array instance.
1099
+
- array instance. Should have a numeric data type.
1100
1100
1101
-
-**other**: _<array>_
1101
+
-**other**: _Union\[ int, float, <array>]_
1102
1102
1103
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`).
1103
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have a numeric data type.
1104
1104
1105
1105
#### Returns
1106
1106
@@ -1122,11 +1122,11 @@ Evaluates `self_i ^ other_i` for each element of an array instance with the resp
1122
1122
1123
1123
-**self**: _<array>_
1124
1124
1125
-
- array instance. Must have an integer or boolean data type.
1125
+
- array instance. Should have an integer or boolean data type.
1126
1126
1127
-
-**other**: _<array>_
1127
+
-**other**: _Union\[ int, bool, <array>]_
1128
1128
1129
-
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Must have an integer or boolean data type.
1129
+
- other array. Must be compatible with `self` (see {ref}`broadcasting`). Should have an integer or boolean data type.
0 commit comments