當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Math hypot()用法及代碼示例


java.lang.Math.hypot()函數是Java中的內置數學函數,可返回歐幾裏得範數, \sqrt{(x * x + y * y)} 。函數返回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


相關用法


注:本文由純淨天空篩選整理自ChetnaAgarwal大神的英文原創作品 Java Math hypot() method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。