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


Java Java.lang.StrictMath.atan2()用法及代碼示例



描述

這個java.lang.StrictMath.atan2() 方法通過計算的反正切來計算相位 thetay/x在範圍內-pi to pi.它從直角坐標的轉換中返回角度theta(x, y)到極坐標(r, theta)

  • 如果第一個參數為正零且第二個參數為正,或者第一個參數為正且有限且第二個參數為正無窮大,則結果為正零。
  • 如果第一個參數為負零而第二個參數為正,或者第一個參數為負且有限且第二個參數為正無窮大,則結果為負零。
  • 如果第一個參數為正零而第二個參數為負,或者第一個參數為正且有限且第二個參數為負無窮大,則結果是最接近 pi 的雙精度值。
  • 如果第一個參數為負零而第二個參數為負,或者第一個參數為負且有限且第二個參數為負無窮大,則結果是最接近 -pi 的雙精度值。
  • 如果第一個參數為正而第二個參數為正零或負零,或者第一個參數為正無窮大而第二個參數為有限,則結果是最接近 pi/2 的雙精度值。
  • 如果第一個參數為負而第二個參數為正零或負零,或者第一個參數為負無窮大而第二個參數為有限,則結果是最接近 -pi/2 的雙精度值。
  • 如果兩個參數都是正無窮大,則結果是最接近 pi/4 的雙精度值。
  • 如果第一個參數是正無窮大,第二個參數是負無窮大,則結果是最接近 3*pi/4 的雙精度值。
  • 如果第一個參數是負無窮大,第二個參數是正無窮大,則結果是最接近 -pi/4 的雙精度值。
  • 如果兩個參數都是負無窮大,則結果是最接近 -3*pi/4 的雙精度值。

聲明

以下是聲明java.lang.StrictMath.atan2()方法

public static double atan2(double y, double x)

參數

  • y─ 這是縱坐標。

  • x─ 這是橫坐標。

返回值

此方法返回對應於笛卡爾坐標中點 (x, y) 的極坐標中點 (r, theta) 的 theta 分量。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.atan2() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

   public static void main(String[] args) {

      double d1 = 0.6 , d2 = 90.00;
   
      /* returns the theta component of the point (r, theta) in 
         polar coordinates that corresponds to the point (x, y)
         in Cartesian coordinates */

      double dAbsValue = StrictMath.atan2(d1, d2); 
      System.out.println("arc tangent value after conversion = " + dAbsValue);

      dAbsValue = StrictMath.atan2(d2 , d1); 
      System.out.println("arc tangent value after conversion = " + dAbsValue);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

arc tangent value after conversion = 0.0066665679038682285
arc tangent value after conversion = 1.5641297588910283

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.atan2() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。