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
Copy file name to clipboardexpand all lines: src/array_api_stubs/_draft/statistical_functions.py
+3-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ def cumulative_sum(
18
18
Parameters
19
19
----------
20
20
x: array
21
-
input array. Should have a numeric data type.
21
+
input array. Should have one or more dimensions (axes). Should have a numeric data type.
22
22
axis: Optional[int]
23
23
axis along which a cumulative sum must be computed. If ``axis`` is negative, the function must determine the axis along which to compute a cumulative sum by counting from the last dimension.
24
24
@@ -48,6 +48,8 @@ def cumulative_sum(
48
48
Notes
49
49
-----
50
50
51
+
- When ``x`` is a zero-dimensional array, behavior is unspecified and thus implementation-defined.
52
+
51
53
**Special Cases**
52
54
53
55
For both real-valued and complex floating-point operands, special cases must be handled as if the operation is implemented by successive application of :func:`~array_api.add`.
0 commit comments