gpt4 book ai didi

C语言中正切的相关函数总结

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 26 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C语言中正切的相关函数总结由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

C语言tan()函数:正切函数 头文件:

?
1
#include <math.h>

tan() 函数用来求给定值的正切值,其原型为:

?
1
double tan ( double x);

【参数】x 为给定的弧度值.

【返回值】返回 x 的正切值.

注意,使用 GCC 编译时请加入-lm.

请看下面的代码:

?
1
2
3
4
5
#include <math.h>
main(){
   double answer = tan (0.5);
   printf ( "tan(0.5) = %f\n" , answer);
}

输出结果:

?
1
tan(0.5) = 0.546302

C语言tanh()函数:双曲线正切函数 头文件:

?
1
#include <math.h>

tanh() 用来求一个数的双曲正切值,其原型为:

?
1
double tanh ( double x);

【参数】x 为双曲正切上的某点.

【返回值】返回 x 的双曲正切值,取值范围为 -1 到 1.

双曲正切的定义为 sinh(x)/cosh(x),即 。

C语言中正切的相关函数总结

双曲正切曲线示意图:

C语言中正切的相关函数总结

注意,使用 GCC 编译时请加入-lm.

请看下面的代码:

?
1
2
3
4
5
#include <math.h>
main(){
   double answer = tanh (0.5);
   printf ( "tanh(0.5) = %f\n" , answer);
}

输出结果:

?
1
tanh(0.5) = 0.462117

C语言atan()函数:求反正切的值(以弧度表示) 头文件:

?
1
#include <math.h>

定义函数:

?
1
double atan ( double x);

函数说明:atan()用来计算参数x 的反正切值,然后将结果返回.

返回值:返回-PI/2 至PI/2 之间的计算结果.

注意,使用 GCC 编译时请加入-lm.

范例 。

?
1
2
3
4
5
6
#include <math.h>
main(){
   double angle;
   angle = atan (1);
   printf ( "angle = %f\n" , angle);
}

执行 。

?
1
angle = 1.570796

C语言atan2()函数:求反正切的值(以弧度表示) 头文件:

?
1
#include <math.h>

定义函数:

?
1
double atan2 ( double y, double x);

函数说明:atan2()用来计算参数y/x 的反正切值,然后将结果返回.

返回值:返回-PI/2 至PI/2 之间的计算结果.

注意,使用 GCC 编译时请加入-lm.

范例 。

?
1
2
3
4
5
6
#include <math.h>
main(){
   double angle;
   angle = atan2 (1, 2);
   printf ( "angle = %f\n" , angle);
}

执行 。

?
1
angle = 0.463648

  。

最后此篇关于C语言中正切的相关函数总结的文章就讲到这里了,如果你想了解更多关于C语言中正切的相关函数总结的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com