发布时间: 2023-7-14 文章作者: myluzh 分类名称: Python 朗读文章
import numpy as np import matplotlib.pyplot as plt # 生成均值为1.75,标准差为1的正态分布数据,100000000个 x1 = np.random.normal(1.75, 1, 10000000) # 绘图 plt.figure(figsize=(18, 8), dpi=100) # 创建画布 plt.hist(x1, 1000) # 绘制直方图 plt.show() # 显示图像
import numpy as np import matplotlib.pyplot as plt # 生成均匀分布的随机数,最低-1最高1,100000000个 x2 = np.random.uniform(-1, 1, 100000000) plt.figure(figsize=(18, 8), dpi=100) # 创建画布 plt.hist(x2, 1000) # 绘制直方图 plt.show() # 显示图像
标签: python numpy 随机数组 正态分布 均匀分布
发表评论