반응형
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
- Python
- Mac
- PySpark
- list
- string
- Excel
- Apache
- GIT
- c#
- PANDAS
- Redshift
- gas
- array
- Google Spreadsheet
- matplotlib
- google apps script
- dataframe
- Github
- hive
- Tkinter
- Kotlin
- django
- Java
- 파이썬
- Google Excel
- numpy
- PostgreSQL
- SQL
- math
Archives
- Today
- Total
목록삼각함수 (1)
달나라 노트
C# : Sin, Cos, Tan (삼각함수, Sin, Cos, Tan)
Math.Sin(x) method는 x값을 받아 x의 Sin값을 return합니다. y = sin(x)에서 x값을 받아 y값을 return하는 것과 동일합니다. Math.Cos(x) method는 x값을 받아 x의 Cos값을 return합니다. y = cos(x)에서 x값을 받아 y값을 return하는 것과 동일합니다. Math.Tan(x) method는 x값을 받아 x의 Sin값을 return합니다. y = tan(x)에서 x값을 받아 y값을 return하는 것과 동일합니다. 여기서 x는 모두 라디안(radian) 값입니다. using System; class MyProgram { public static void Main() { var pi = Math.PI; Console.WriteLine("Sin..
C#/C#
2022. 4. 18. 19:38