@@ -24,7 +24,7 @@ Calculates the maximum value of the input array `x`.
24
24
25
25
- ** x** : _ < ; array> ; _
26
26
27
- - input array.
27
+ - input array. Should have a numeric data type.
28
28
29
29
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
30
30
@@ -49,7 +49,7 @@ Calculates the arithmetic mean of the input array `x`.
49
49
50
50
- ** x** : _ < ; array> ; _
51
51
52
- - input array.
52
+ - input array. Should have a floating-point data type.
53
53
54
54
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
55
55
@@ -74,7 +74,7 @@ Calculates the minimum value of the input array `x`.
74
74
75
75
- ** x** : _ < ; array> ; _
76
76
77
- - input array.
77
+ - input array. Should have a numeric data type.
78
78
79
79
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
80
80
@@ -99,7 +99,7 @@ Calculates the product of input array `x` elements.
99
99
100
100
- ** x** : _ < ; array> ; _
101
101
102
- - input array.
102
+ - input array. Should have a numeric data type.
103
103
104
104
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
105
105
@@ -124,7 +124,7 @@ Calculates the standard deviation of the input array `x`.
124
124
125
125
- ** x** : _ < ; array> ; _
126
126
127
- - input array.
127
+ - input array. Should have a floating-point data type.
128
128
129
129
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
130
130
@@ -153,7 +153,7 @@ Calculates the sum of the input array `x`.
153
153
154
154
- ** x** : _ < ; array> ; _
155
155
156
- - input array.
156
+ - input array. Should have a numeric data type.
157
157
158
158
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
159
159
@@ -178,7 +178,7 @@ Calculates the variance of the input array `x`.
178
178
179
179
- ** x** : _ < ; array> ; _
180
180
181
- - input array.
181
+ - input array. Should have a floating-point data type.
182
182
183
183
- ** axis** : _ Optional\[ Union\[ int, Tuple\[ int, ... ] ] ] _
184
184
0 commit comments