@@ -21,7 +21,7 @@ def atleast_1d(*arys):
21
21
Returns
22
22
-------
23
23
ret : ndarray
24
- An array, or sequence of arrays, each with ``a.ndim >= 1``.
8000
24
+ An array, or list of arrays, each with ``a.ndim >= 1``.
25
25
Copies are made only if necessary.
26
26
27
27
See Also
@@ -72,7 +72,7 @@ def atleast_2d(*arys):
72
72
Returns
73
73
-------
74
74
res, res2, ... : ndarray
75
- An array, or tuple of arrays, each with ``a.ndim >= 2``.
75
+ An array, or list of arrays, each with ``a.ndim >= 2``.
76
76
Copies are avoided where possible, and views with two or more
77
77
dimensions are returned.
78
78
@@ -124,7 +124,7 @@ def atleast_3d(*arys):
124
124
Returns
125
125
-------
126
126
res1, res2, ... : ndarray
127
- An array, or tuple of arrays, each with ``a.ndim >= 3``. Copies are
127
+ An array, or list of arrays, each with ``a.ndim >= 3``. Copies are
128
128
avoided where possible, and views with three or more dimensions are
129
129
returned. For example, a 1-D array of shape ``(N,)`` becomes a view
130
130
of shape ``(1, N, 1)``, and a 2-D array of shape ``(M, N)`` becomes a
0 commit comments