原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.ma.shape.html
校对:(虚位以待)
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,)