📜  添加高斯噪声python代码示例

📅  最后修改于: 2022-03-11 14:46:20.955000             🧑  作者: Mango

代码示例1
import numpy as np

noise = np.random.normal(0,1,100)

# 0 is the mean of the normal distribution you are choosing from
# 1 is the standard deviation of the normal distribution
# 100 is the number of elements you get in array noise