java.lang.Math.sin() 用於返回角度的三角正弦值。此方法返回 -1 到 1 之間的值。
用法
public static double sin(double a)
參數
a = an angle, in radians
返回
It returns the sine value of the argument.
- 如果參數為正數或負數,此方法將返回正弦值。
- 如果參數是 NaN 或無窮大,則此方法將返回 NaN。
- 如果參數為零,此方法將返回與參數相同符號的零。
例子1
public class SinExample1
{
public static void main(String[] args)
{
double a = 60;
// converting values to radians
double b = Math.toRadians(a);
System.out.println(Math.sin(b));
}
}
輸出:
0.8660254037844386
例子2
public class SinExample2
{
public static void main(String[] args)
{
double a = 90;
// converting values to radians
double b = Math.toRadians(a);
System.out.println(Math.sin(b));
}
}
輸出:
1.0
例子3
public class SinExample3
{
public static void main(String[] args)
{
double a = 1.0/0;
// converting values to radians
double b = Math.toRadians(a);
// Input infinity, Output NaN
System.out.println(Math.sin(b));
}
}
輸出:
NaN
示例 4
public class SinExample4
{
public static void main(String[] args)
{
double a = Double.MAX_VALUE;
// converting values to radians
double b = Math.toRadians(a);
System.out.println(Math.sin(b));
}
}
輸出:
-0.9285211870146288
相關用法
- Java Math.sinh()用法及代碼示例
- Java Math.signum()用法及代碼示例
- Java Math.sqrt()用法及代碼示例
- Java Math.subtractExact()用法及代碼示例
- Java Math.multiplyExact()用法及代碼示例
- Java Math.rint()用法及代碼示例
- Java Math.nextUp()用法及代碼示例
- Java Math.tan()用法及代碼示例
- Java Math.asin()用法及代碼示例
- Java Math.atan()用法及代碼示例
- Java Math.nextAfter()用法及代碼示例
- Java Math.exp()用法及代碼示例
- Java Math.tanh()用法及代碼示例
- Java Math.toDegrees()用法及代碼示例
- Java Math.getExponent()用法及代碼示例
- Java Math.toIntExact()用法及代碼示例
- Java Math.IEEEremainder()用法及代碼示例
- Java Math.incrementExact()用法及代碼示例
- Java Math.min()用法及代碼示例
- Java Math.log()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Math.sin() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。