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


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


此函數提供計算值的反正切值的函數。該值應小於等於 Ď€/2 且大於等於 -Ď€/2。

該函數以單個參數作為需要計算其反正切值的數字,並返回計算結果的值。

例:

    X = 0.7
    The function will return 0.610726

這個函數是一部分math.h庫,它必須包含在程序中。

math.h - C 中的 atan() 函數示例


#include <stdio.h>
#include <math.h>

int main()
{
	// Defining variables
	double a,b;

	// Assigning value for getting atan value
	a = 0.7;

	// Calculating the arc tangent of a
	b = atan(a);

	// Displaying the result for user
	printf("The calculated value is:%lf \n\n", b);

	return 0;
}

輸出

math.h - atan()  in c language



相關用法


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