首页 > 代码库 > python numpy库学习
python numpy库学习
1.numpy.floor(a)
返回大于元素的最小整数
a = np.array([-1.7, -1.5, -0.2, 0.2, 1.5, 1.7, 2.0])
np.floor(a)array([-2., -2., -1., 0., 1., 1., 2.])
2.np.linspace(0,20,100)
返回0到20之间的100个点的数组
3.hist,bin_edges=np.histogram(a, bins)注意这个函数产生的不一定正好所有的hist相加的和为1,因为bins的组距不一定为1.只有在组距为1的情况下,相加才为1.
这里有个bug的解决方法,有关为啥normlized不等于1的困惑。
http://stackoverflow.com/questions/21532667/numpy-histogram-cumulative-density-does-not-sum-to-1
python numpy库学习
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。