numpy_属性

作者: Ledestin | 来源:发表于2017-05-19 15:27 被阅读24次

本文介绍几种numpy的属性:
1.ndim:维度
2.shape:行数和列数
3.size:元素个数


Demo.py

import numpy as np #为了方便使用numpy 采用np简写
array = np.array([[1,2,3],[2,3,4]])  #列表转化为矩阵
print array
#接着,看这几种属性
print('number of dim:',array.ndim)  # 维度
# number of dim: 2

print('shape :',array.shape)    # 行数和列数
# shape : (2, 3)

print('size:',array.size)   # 元素个数
# size: 6

结果:

[[1 2 3]
 [2 3 4]]
('number of dim:', 2)
('shape :', (2L, 3L))
('size:', 6)

相关文章

网友评论

    本文标题:numpy_属性

    本文链接:https://www.haomeiwen.com/subject/eysexxtx.html