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 numerical positive of each element `x_i` (i.e., `y_i = +x_i`) of the input array `x`.
873
+
874
+
#### Parameters
875
+
876
+
-**x**: _<array>_
877
+
878
+
- input array.
879
+
880
+
#### Returns
881
+
882
+
-**out**: _<array>_
883
+
884
+
- an array containing the evaluated result for each element in `x`. The returned array must have a supported numerical data type.
885
+
854
886
### <aname="pow"href="#pow">#</a> pow(x1, x2, /)
855
887
856
888
Calculates an implementation-dependent approximation of exponentiation by raising each element `x1_i` (the base) of the input array `x1` to the power of `x2_i` (the exponent), where `x2_i` is the corresponding element of the input array `x2`.
@@ -959,7 +991,7 @@ Returns an indication of the sign of a number for each element `x_i` of the inpu
959
991
960
992
-**out**: _<array>_
961
993
962
-
- an array containing the evaluated result for each element in `x`. If `out` is `None`, the returned array must have the same data type as `x`.
994
+
- an array containing the evaluated result for each element in `x`.
0 commit comments