일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- Mac
- Python
- hive
- google apps script
- PySpark
- math
- Excel
- numpy
- c#
- Google Spreadsheet
- 파이썬
- Google Excel
- django
- Github
- gas
- list
- string
- Redshift
- dataframe
- Java
- GIT
- matplotlib
- PostgreSQL
- PANDAS
- array
- SQL
- Tkinter
- Apache
- Kotlin
- Today
- Total
목록math (27)
달나라 노트
C#에서 Math class는 다양한 수학적인 기능을 제공합니다. Math.Abs는 절대값을 return해줍니다. using System; class MyProgram { static void Main() { double value1 = -9.8; double result = Math.Abs(value1); Console.WriteLine(result); } } -- Result 9.8
C#에서 Math class는 다양한 수학적인 기능을 제공합니다. Math.Sqrt는 제곱근을 return해줍니다. using System; class MyProgram { static void Main() { int value1 = 9; double result = Math.Sqrt(value1); Console.WriteLine(result); } } -- Result 3 주의할 점은 Sqrt의 결과값은 실수이므로 double 형태로 선언한 result 변수에 Sqrt의 결과를 할당합니다.
C#에서 Math class는 다양한 수학적인 기능을 제공합니다. Math.max는 최대값을 return해줍니다. Math.min은 최소값을 return해줍니다. using System; class MyProgram { static void Main() { int value1 = 2; int value2 = 3; int result = Math.Max(value1, value2); Console.WriteLine(result); } } -- Result 3 max는 2개의 인자만을 받으며 2개의 인자 중 더 큰 값을 return합니다. using System; class MyProgram { static void Main() { int value1 = 2; int value2 = 3; int result..
math library에서는 log함수를 지원합니다. 기본적으로 다음과 같이 3가지가 있습니다. math.log() = 밑이 e(자연 상수)인 log math.log2() = 밑이 2인 log math.log10() = 밑이 10인 log import math result = math.log(math.e) print(result) result = math.log2(2) print(result) result = math.log10(10) print(result) -- Result 1.0 1.0 1.0 math의 log method는 위처럼 사용할 수 있습니다. log method의 괄호 안에 log를 적용할 값을 넣어주면 되는것이죠. numpy library의 log 함수와 매우 흡사합니다. (numpy ..