numpy.ma.dstack(tup) = <numpy.ma.extras._fromnxfunction_seq instance>¶Stack arrays in sequence depth wise (along third axis).
Takes a sequence of arrays and stack them along the third axisto make a single array. Rebuilds arrays divided bydsplit.This is a simple way to stack 2D arrays (images) into a single3D array for processing.
This function continues to be supported for backward compatibility, butyou should prefer
np.concatenateornp.stack. Thenp.stackfunction was added in NumPy 1.10.
| Parameters: | tup : sequence of arrays
|
|---|---|
| Returns: | stacked : ndarray
|
See also
stackvstackhstackconcatenatedsplitNotes
The function is applied to both the _data and the _mask, if any.
Examples
>>>a=np.array((1,2,3))>>>b=np.array((2,3,4))>>>np.dstack((a,b))array([[[1, 2], [2, 3], [3, 4]]])
>>>a=np.array([[1],[2],[3]])>>>b=np.array([[2],[3],[4]])>>>np.dstack((a,b))array([[[1, 2]], [[2, 3]], [[3, 4]]])