bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / ma / core / shape
function
numpy.ma.core:shape
source: build-install/usr/lib/python3.14/site-packages/numpy/ma/core.py :7756
Signature
def shape ( obj ) Summary
Return the shape of an array.
Parameters
a: array_likeInput array.
Returns
shape: tuple of intsThe elements of the shape tuple give the lengths of the corresponding array dimensions.
Examples
import numpy as np np.shape(np.eye(3)) np.shape([[1, 3]]) np.shape([0]) np.shape(0)
a = np.array([(1, 2), (3, 4), (5, 6)], dtype=[('x', 'i4'), ('y', 'i4')]) np.shape(a) a.shape
See also
- len
len(a)is equivalent tonp.shape(a)[0]for N-D arrays withN>=1.- ndarray.shape
Equivalent array method.
Aliases
-
numpy.ma.shape