python numpy矩阵信息,shape,size,dtype

时间:2022-03-10 21:22:11
[python] view plain copy print?
  1. import numpy as np  
  2. from numpy import random  
  3. matrix1 = random.random(size=(2,4))  
  4. #矩阵每维的大小  
  5. print matrix1.shape  
[python] view plain copy print?
  1. #矩阵所有数据的个数  
  2. print matrix1.size  
[python] view plain copy print?
  1. #矩阵每个数据的类型  
  2. print matrix1.dtype