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


C語言 atan2()用法及代碼示例


此函數提供計算坐標 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;
}

輸出

math.h - atan2()  in c language



相關用法


注:本文由純淨天空篩選整理自Manu Jemini大神的英文原創作品 atan2() function of math.h in C。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。