VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > temp > 简明python教程 >
  • 数据分析和科学计算可视化(3)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
取整运算
 
>>> x = np.random.rand(10)*50      # 10个随机数
>>> x
array([ 43.85639765,  30.47354735,  43.68965984,  38.92963767,
         9.20056878,  21.34765863,   4.61037809,  17.99941701,
        19.70232038,  30.05059154])
>>> np.int64(x)                    # 取整
array([43304338,  921,  4171930], dtype=int64)
>>> np.int32(x)
array([43304338,  921,  4171930])
>>> np.int16(x)
array([43304338,  921,  4171930], dtype=int16)
>>> np.int8(x)
array([43304338,  921,  4171930], dtype=int8)

相关教程