创建一个函数,能够返回任意均值或方差的正态分布曲线坐标 x,y。 1 def norm_curve (mu, sigma , x) 利用刚才的函数,在同一个 figure 里面绘制 x ∼ N(0, 1)的图像
时间: 2024-05-15 12:19:46 浏览: 151
可以绘制正态分布的曲线
4星 · 用户满意度95%
```
import numpy as np
import matplotlib.pyplot as plt
def norm_curve(mu, sigma, x):
y = 1/(sigma * np.sqrt(2 * np.pi)) * np.exp(-0.5 * ((x-mu)/sigma)**2)
return y
x = np.linspace(-5, 5, 100)
y = norm_curve(0, 1, x)
plt.plot(x, y)
plt.xlabel('x')
plt.ylabel('Probability density')
plt.title('Normal Distribution with mu=0, sigma=1')
plt.show()
```
阅读全文