问题:块数组尺寸
我目前正在尝试学习Numpy和Python。给定以下数组:
import numpy as np
a = np.array([[1,2],[1,2]])
有没有返回尺寸的函数a
(ega是2 x 2数组)?
size()
返回4并没有太大帮助。
回答 0
回答 1
第一:
按照惯例,在Python世界中,的快捷方式numpy
是np
,因此:
In [1]: import numpy as np
In [2]: a = np.array([[1,2],[3,4]])
第二:
在Numpy中,维度,轴/轴,形状是相关的,有时是相似的概念:
尺寸
在“ 数学/物理学”中,维或维数被非正式地定义为指定空间中任何点所需的最小坐标数。但在numpy的,根据numpy的文档,这是相同的轴线/轴:
在Numpy中,尺寸称为轴。轴数为等级。
In [3]: a.ndim # num of dimensions/axes, *Mathematics definition of dimension*
Out[3]: 2
轴/轴
在Numpy中索引an 的第n个坐标array
。多维数组每个轴可以有一个索引。
In [4]: a[1,0] # to index `a`, we specific 1 at the first axis and 0 at the second axis.
Out[4]: 3 # which results in 3 (locate at the row 1 and column 0, 0-based index)
形状
描述沿每个可用轴有多少数据(或范围)。
In [5]: a.shape
Out[5]: (2, 2) # both the first and second axis have 2 (columns/rows/pages/blocks/...) data
回答 2
import numpy as np
>>> np.shape(a)
(2,2)
如果输入不是numpy数组而是列表列表,则也可以使用
>>> a = [[1,2],[1,2]]
>>> np.shape(a)
(2,2)
或元组的元组
>>> a = ((1,2),(1,2))
>>> np.shape(a)
(2,2)
回答 3
您可以使用.shape
In: a = np.array([[1,2,3],[4,5,6]])
In: a.shape
Out: (2, 3)
In: a.shape[0] # x axis
Out: 2
In: a.shape[1] # y axis
Out: 3
回答 4
您可以使用.ndim
尺寸并.shape
知道确切尺寸
var = np.array([[1,2,3,4,5,6], [1,2,3,4,5,6]])
var.ndim
# displays 2
var.shape
# display 6, 2
您可以使用.reshape
功能更改尺寸
var = np.array([[1,2,3,4,5,6], [1,2,3,4,5,6]]).reshape(3,4)
var.ndim
#display 2
var.shape
#display 3, 4
回答 5
该shape
方法要求它a
是一个Numpy ndarray。但是Numpy还可以计算纯python对象的可迭代对象的形状:
np.shape([[1,2],[1,2]])
回答 6
a.shape
只是的受限版本np.info()
。看一下这个:
import numpy as np
a = np.array([[1,2],[1,2]])
np.info(a)
出
class: ndarray
shape: (2, 2)
strides: (8, 4)
itemsize: 4
aligned: True
contiguous: True
fortran: False
data pointer: 0x27509cf0560
byteorder: little
byteswap: False
type: int32
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。