java.lang.Math.hypot()函數是Java中的內置數學函數,可返回歐幾裏得範數,。函數返回sqrt(x2 + y2),而不會出現中間上溢或下溢。
- 如果任何一個參數都是無限大,則結果為正無限大。
- 如果兩個自變量均為NaN且兩個自變量均為無限,則結果為NaN。
用法:
public static double hypot(double x, double y) Parameter: x and y are the values.
返回值:
平方根2+ y2),而不會出現中間上溢或下溢。
範例1:展示java.lang.Math.hyptot()方法的用法。
// Java program to demonstrate working
// of java.lang.Math.hypot() method
import java.lang.Math;
class Gfg {
// Driver code
public static void main(String args[])
{
double x = 3;
double y = 4;
// when both are not infinity
double result = Math.hypot(x, y);
System.out.println(result);
double positiveInfinity =
Double.POSITIVE_INFINITY;
double negativeInfinity =
Double.NEGATIVE_INFINITY;
double nan = Double.NaN;
// when 1 or more argument is NAN
result = Math.hypot(nan, y);
System.out.println(result);
// when both arguments are infinity
result = Math.hypot(positiveInfinity,
negativeInfinity);
System.out.println(result);
}
}
輸出:
5.0 NaN Infinity
相關用法
- Java StrictMath hypot()用法及代碼示例
- Java Java.math.BigInteger.modInverse()用法及代碼示例
- Java Java.math.BigInteger.probablePrime()用法及代碼示例
- Java Math pow()用法及代碼示例
- Java Math log()用法及代碼示例
- Java Math exp()用法及代碼示例
- Java Math nextAfter()用法及代碼示例
- Java Math min()用法及代碼示例
- Java Math floorMod()用法及代碼示例
- Java Math incrementExact(int x)用法及代碼示例
- Java Math cos()用法及代碼示例
- Java Math ulp()用法及代碼示例
- Java Math addExact(int a, int b)用法及代碼示例
- Java Math tan()用法及代碼示例
- Java Math max()用法及代碼示例
注:本文由純淨天空篩選整理自ChetnaAgarwal大神的英文原創作品 Java Math hypot() method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。