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