首页| 行业标准| 论文文档| 电子资料| 图纸模型
购买积分 购买会员 激活码充值

您现在的位置是:团子下载站 > 其他 > Linux C 函数库中文教程

Linux C 函数库中文教程

  • 资源大小:211
  • 上传时间:2021-07-10
  • 下载次数:0次
  • 浏览次数:25次
  • 资源积分:1积分
  • 标      签: Linux

资 源 简 介

Linux C 函数库中文手册 cosh       原型:extern float cosh(float x);    用法:#include     功能:求x的双曲余弦值    说明:cosh(x)=(e^x+e^(-x))/2    举例:       // cosh.c            #include       #include       main()      {        float x;                clrscr();        // clear screen        textmode(0x00);  // 6 lines per LCD screen                x=PI/4.;        printf("cosh(%.4f)=%.4f ",x,cosh(x));                getchar();        return 0;      }        相关函数:sinh,tanh
VIP VIP