此函數提供計算坐標 Y 與坐標 X 之比的弧度的反正切函數。該值應小於等於 π 且大於等於 -π。
該函數以兩個參數作為X、Y坐標,需要計算其反正切值,並返回計算結果值。
例:
X = 0.7 and Y = 0.5 The function will return 0.950547
這個函數是一部分math.h
庫,它必須包含在程序中。
math.h - C 中的 atan2() 函數示例
#include <stdio.h>
#include <math.h>
int main()
{
// Defining variables
double a,b,c;
// Assigning value for getting atan2 value
a = 0.7;
b = 0.5;
// Calculating the arc tangent for both x any y axis.
c = atan2(a,b);
// Displaying the result for user
printf("The calculated value is:%lf \n\n", c);
return 0;
}
輸出
相關用法
- C語言 atan()用法及代碼示例
- C語言 abs()用法及代碼示例
- C語言 asin()用法及代碼示例
- C語言 acos()用法及代碼示例
- C語言 assert()用法及代碼示例
- C語言 arc()用法及代碼示例
- C語言 asctime()、asctime_s()用法及代碼示例
- C語言 fread()用法及代碼示例
- C語言 feof()用法及代碼示例
- C語言 imagesize()用法及代碼示例
- C語言 getarcoords()用法及代碼示例
- C語言 strcspn()用法及代碼示例
- C語言 setlinestyle()用法及代碼示例
- C語言 showbits()用法及代碼示例
- C語言 sprintf()用法及代碼示例
- C語言 outtextxy()用法及代碼示例
- C語言 isgraph()用法及代碼示例
- C語言 grapherrormsg()用法及代碼示例
- C語言 moveto()用法及代碼示例
- C語言 putchar()用法及代碼示例
注:本文由純淨天空篩選整理自Manu Jemini大神的英文原創作品 atan2() function of math.h in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。