cosh

头文件:#include <math.h>

cosh()用来计算参数x 的双曲余玄值,然后将结果返回。其原型为:
    double cosh(double x);

双曲余弦的数学定义式为:
    (exp(x)+exp(x))/2



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

双曲余弦在区间 -5 <= x <= 5 上的函数图像。


【实例】求0.5的双曲余弦值。
   
   
  1. #include <math.h>
  2. main(){
  3. double answer = cosh(0.5);
  4. printf("cosh(0.5) = %f\n", answer);
  5. }
#include <math.h>
main(){
    double answer = cosh(0.5);
    printf("cosh(0.5) = %f\n", answer);
}
运行结果:
cosh(0.5) = 1.127626

又如,求双曲余弦上某一点的值。
   
   
  1. #include<stdio.h>
  2. #include<math.h>
  3. int main(void)
  4. {
  5. double resut;
  6. double x =1;
  7. resut = cosh(x);/*求双曲余弦值*/
  8. printf("cosh(%lf) = %lf\n",x,resut);/*格式化输出*/
  9. return 0;
  10. }
#include<stdio.h>
#include<math.h>
int main(void)
{
    double resut;
    double x =1;
    resut = cosh(x);/*求双曲余弦值*/
    printf("cosh(%lf) = %lf\n",x,resut);/*格式化输出*/
    return 0;
}
运行结果:
cosh(1.000000) = 1.543081

程序先定义两个double型变量,resut保存计算结果,x提供双曲余弦函数点。语句resut = cosh(x);的作用是求该函数上x点对应的数值,然后把结果赋值给resut。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值