当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ Math sinh()用法及代码示例


该函数计算以弧度给出的角度的双曲正弦值。

数学上

sinhx = (ex-e-x/2

用法

假设双曲角为 x:

float sinh(float x);
double sinh(double x);
long double sinh(long double x);
double sinh(integral x);

参数

x:代表双曲角的值。

返回值

它返回一个角度的双曲正弦值。

例子1

让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
   int x=90;
   float radian=x*3.14/180;
   std::cout << "Value of degree is:" << x<<std::endl;
   cout<<"sinh(radian):"<<sinh(radian);
    return 0;
}

输出:

Value of degree is:90
sinh(radian):2.2993   

在此示例中,sinh() 函数计算角度 90 的双曲正弦值并返回值 2.2993

例子2

让我们看另一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
   float x=56.4;
   float radian=x*3.14/180;
   std::cout << "Value of degree is:" << x<<std::endl;
   cout<<"sinh(radian):"<<sinh(radian);
   return 0;
}

输出:

Value of degree is:56.4
sinh(radian):1.15046   

在此示例中,sinh() 函数计算角度 56.4 的双曲正弦值并返回值 1.15。






相关用法


注:本文由纯净天空筛选整理自 C++ Math sinh()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。