반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- matplotlib
- Python
- dataframe
- array
- PANDAS
- Redshift
- Mac
- Excel
- string
- numpy
- 파이썬
- Java
- Github
- math
- django
- GIT
- SQL
- Tkinter
- list
- PySpark
- Kotlin
- PostgreSQL
- Google Spreadsheet
- Apache
- Google Excel
- c#
- google apps script
- hive
- gas
Archives
- Today
- Total
달나라 노트
Python numpy : sqrt (제곱근, numpy 제곱근, numpy 루트) 본문
728x90
반응형
numpy의 sqrt는 어떤 수의 제곱근을 계산해줍니다.
import numpy as np
test_value = np.sqrt(1)
print(test_value)
test_value = np.sqrt(4)
print(test_value)
test_value = np.sqrt(9)
print(test_value)
-- Result
1.0
2.0
3.0
사용법은 간단합니다.
위처럼 그냥 어떤 값을 sqrt method의 parameter로 전달하면 그 값의 제곱근을 계산해줍니다.
import numpy as np
value_list = [1, 2, 4, 9, 16]
result = np.sqrt(value_list)
print(result)
value_arr = [1, 2, 4, 9, 16]
result = np.sqrt(value_arr)
print(result)
-- Result
[1. 1.41421356 2. 3. 4. ]
[1. 1.41421356 2. 3. 4. ]
특정한 상수 뿐 아니라 list나 array도 전달할 수 있습니다.
위처럼 list 또는 array에 존재하는 모든 요소 각각에 루트를 씌운 제곱근을 계산해줍니다.
728x90
반응형
'Python > Python numpy' 카테고리의 다른 글
Comments