Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 개발노트
- boj
- Python
- ruby2d
- plugin
- Godot
- kotlin
- IntelliJ
- OAuth
- OTLanguage
- gnuplot
- react
- C
- jetbrains
- JS
- Baekjoon
- Android
- GitHub
- 루비
- gradle
- ruby
- Java
- Shell
- CPP
- maven
- Vane
- RaspberryPi
- Spring
- rubymine
- error
Archives
- Today
- Total
목록e (1)
PersesTitan(페르) 기술블로그
[Python] 시그모이드(sigmoid) 함수 그래프 구현하기
관련된 글 [Python] sin, cos, tan 그래프 출력하기 import numpy exp 자연지수 e를 받은 값인 x승의 값을 반환해주는 라이브러리 입니다. 나머지 matplotlib.pyplot, numpy는 상단의 관련된 글에서 확인해주세요. 코드 import matplotlib.pyplot as plt import numpy as np def sigmoid(x): return 1 / (1 + np.exp(-x)) array = np.arange(-10, 10, 0.1) plt.axvline(x=0, color='r', linestyle='--', linewidth=1) plt.axhline(y=0, color='r', linestyle='--', linewidth=1) plt.plot(ar..
Language/Python
2023. 4. 11. 16:32