用python绘制sigmoid函数图代码
时间: 2023-11-20 12:05:27 浏览: 85
python语言画出Sigmoid,Tanh,RuLe函数图像
以下是用 Python 绘制 sigmoid 函数图的代码:
```python
import numpy as np
import matplotlib.pyplot as plt
def sigmoid(x):
return 1 / (1 + np.exp(-x))
x = np.linspace(-10, 10, 1000)
y = sigmoid(x)
plt.plot(x, y)
plt.xlabel("x")
plt.ylabel("sigmoid(x)")
plt.show()
```
运行代码后会绘制出 sigmoid 函数的图形。其中,`np.linspace(-10, 10, 1000)` 生成 -10 到 10 的 1000 个等间距的数值,`sigmoid(x)` 则是将该数组中的每个值作为自变量,计算出对应的 sigmoid 值。最后,使用 matplotlib 库绘制出 sigmoid 函数的图形。
阅读全文