当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。