bundles / scipy 1.17.1 / scipy / _lib / array_api_extra / _delegation / expand_dims
function
scipy._lib.array_api_extra._delegation:expand_dims
Signature
def expand_dims ( a : Array , / , axis : int | tuple[int, ...] = (0,) , xp : ModuleType | None = None ) → Array Summary
Expand the shape of an array.
Extended Summary
Insert (a) new axis/axes that will appear at the position(s) specified by axis in the expanded array shape.
This is xp.expand_dims for axis an int or a tuple of ints. Roughly equivalent to numpy.expand_dims for NumPy arrays.
Parameters
a: arrayArray to have its shape expanded.
axis: int or tuple of ints, optionalPosition(s) in the expanded axes where the new axis (or axes) is/are placed. If multiple positions are provided, they should be unique (note that a position given by a positive index could also be referred to by a negative index - that will also result in an error). Default:
(0,).xp: array_namespace, optionalThe standard-compatible namespace for
a. Default: infer.
Returns
: arrayawith an expanded shape.
Examples
import array_api_strict as xp import array_api_extra as xpx x = xp.asarray([1, 2]) x.shape⚠
y = xpx.expand_dims(x, axis=0, xp=xp) y y.shape⚠
y = xpx.expand_dims(x, axis=1, xp=xp) y y.shape⚠
y = xpx.expand_dims(x, axis=(0, 1), xp=xp) y⚠
y = xpx.expand_dims(x, axis=(2, 0), xp=xp) y⚠
Aliases
-
scipy.differentiate.xpx.expand_dims