numpy.ma.shape

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.ma.shape.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.ma.shape(obj)[source]

返回数组的形状。

参数:

a:array_like

输入数组。

返回:

shape:ints的元组

形状元组的元素给出相应数组的长度。

也可以看看

alen

ndarray.shape
等效数组方法。

例子

>>> np.shape(np.eye(3))
(3, 3)
>>> np.shape([[1, 2]])
(1, 2)
>>> np.shape([0])
(1,)
>>> np.shape(0)
()
>>> a = np.array([(1, 2), (3, 4)], dtype=[('x', 'i4'), ('y', 'i4')])
>>> np.shape(a)
(2,)
>>> a.shape
(2,)