File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -184,6 +184,10 @@ def vstack(tup):
184
184
Take a sequence of arrays and stack them vertically to make a single
185
185
array. Rebuild arrays divided by `vsplit`.
186
186
187
+ This function continues to be supported for backward compatibility, but
188
+ you should prefer ``np.concatenate`` or ``np.stack``. The ``np.stack``
189
+ function was added in NumPy 1.10.
190
+
187
191
Parameters
188
192
----------
189
193
tup : sequence of ndarrays
@@ -236,6 +240,10 @@ def hstack(tup):
236
240
Take a sequence of arrays and stack them horizontally to make
237
241
a single array. Rebuild arrays divided by `hsplit`.
238
242
243
+ This function continues to be supported for backward compatibility, but
244
+ you should prefer ``np.concatenate`` or ``np.stack``. The ``np.stack``
245
+ function was added in NumPy 1.10.
246
+
239
247
Parameters
240
248
----------
241
249
tup : sequence of ndarrays
Original file line number Diff line number Diff line change @@ -325,6 +325,10 @@ def dstack(tup):
325
325
This is a simple way to stack 2D arrays (images) into a single
326
326
3D array for processing.
327
327
328
+ This function continues to be supported for backward compatibility, but
329
+ you should prefer ``np.concatenate`` or ``np.stack``. The ``np.stack``
330
+ function was added in NumPy 1.10.
331
+
328
332
Parameters
329
333
----------
330
334
tup : sequence of arrays
You can’t perform that action at this time.
0 commit comments