2017年7月22日

正态分布的前世今生

摘要: http://songshuhui.net/archives/76501 http://songshuhui.net/archives/77386 阅读全文

posted @ 2017-07-22 18:26 蚂蚁flow 阅读(142) 评论(0) 推荐(0) 编辑

np.newaxis 为 numpy.ndarray(多维数组)增加一个轴

摘要: np.newaxis 在使用和功能上等价于 None,其实就是 None 的一个别名。 1. np.newaxis 的实用 2. 索引多维数组的某一列时返回的是一个行向量 所以,一种正确的索引方式是: 如果想实现第二列和第四列的拼接(层叠): 阅读全文

posted @ 2017-07-22 14:16 蚂蚁flow 阅读(4280) 评论(0) 推荐(0) 编辑

numpy.linspace使用详解

摘要: numpy.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None) 在指定的间隔内返回均匀间隔的数字。 返回num均匀分布的样本,在[start, stop]。 这个区间的端点可以任意的被排除在外。 start  阅读全文

posted @ 2017-07-22 11:39 蚂蚁flow 阅读(50149) 评论(0) 推荐(2) 编辑

导航