dpnp.expand_dims
- dpnp.expand_dims(x1, axis)[source]
Expand the shape of an array.
Insert a new axis that will appear at the axis position in the expanded array shape.
For full documentation refer to
numpy.expand_dims.See also
dpnp.squeezeThe inverse operation, removing singleton dimensions
dpnp.reshapeInsert, remove, and combine dimensions, and resize existing ones
dpnp.indexing,dpnp.atleast_1d,dpnp.atleast_2d,dpnp.atleast_3dExamples
>>> import dpnp as np >>> x = np.array([1, 2]) >>> x.shape (2,)
The following is equivalent to
x[np.newaxis, :]orx[np.newaxis]:>>> y = np.expand_dims(x, axis=0) >>> y array([[1, 2]]) >>> y.shape (1, 2)
The following is equivalent to
x[:, np.newaxis]:>>> y = np.expand_dims(x, axis=1) >>> y array([[1], [2]]) >>> y.shape (2, 1)
axismay also be a tuple:>>> y = np.expand_dims(x, axis=(0, 1)) >>> y array([[[1, 2]]])
>>> y = np.expand_dims(x, axis=(2, 0)) >>> y array([[[1], [2]]])
Note that some examples may use
Noneinstead ofnp.newaxis. These are the same objects:>>> np.newaxis is None True