定义sigmod函数,生成数组y,y的元素为x的每个元素的sigmod 函数值
时间: 2024-02-18 17:02:42 浏览: 50
sigmod.zip_FPGA指数函数_sigmod_sigmoid cordic_指数函数 FPGA_指数函数FPGA
5星 · 资源好评率100%
sigmoid函数定义如下:
$$\sigma(x) = \frac{1}{1+e^{-x}}$$
其中,$e$为自然常数,$x$为输入值。
以下是Python代码实现:
```python
import numpy as np
def sigmoid(x):
return 1 / (1 + np.exp(-x))
x = np.array([1, 2, 3, 4])
y = sigmoid(x)
print(y)
```
输出结果为:
```
[0.73105858 0.88079708 0.95257413 0.98201379]
```
其中,$y$为$[0.73105858, 0.88079708, 0.95257413, 0.98201379]$。
阅读全文