Numpy随机数 np.random随机数子库 1: 基本函数 .rand(d0,d1,..dn):创建d0-dn维度的随机数数组,浮点数,范围从0-1,均匀分布 .randn(d0,d1,..dn):功能同上,区别:范围不定,标准正态分布 .randint(low,high,(shape)):根据shape创建随机整数或整数数组,范围是low,high,形状是shape .seed(s):随机数种子,s是给定的种子值,通过设定相同的随机数种子,可以每次生成相同的随机数 import numpy…