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


C++ asinh()用法及代码示例


asinh()是C++ STL中的内置函数,它返回以弧度给出的角度的反双曲正弦值。

用法:

asinh(data_type x)

参数:该函数接受一个强制性参数x,该参数以弧度指定反双曲角。它可以是任何值,即负,正或零。该参数可以是double,float或long double数据类型。


返回值:此函数以弧度返回参数的反双曲正弦值。

下面的程序演示了上述函数:

示例1:

// C++ program to demonstrate 
// the asinh() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    double x = 50.0; 
  
    // Function call to calculate asinh(x) value 
    double result = asinh(x); 
  
    cout << "asinh(50.0) = " << result << " radians" << endl; 
    cout << "asinh(50.0) = " << result * 180 / 3.141592 
         << " degrees" << endl; 
    return 0; 
}
输出:
asinh(50.0) = 4.60527 radians
asinh(50.0) = 263.863 degrees

示例2:

// C++ program to demonstrate 
// the asinh() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    int x = -50.0; 
  
    // Function call to calculate asinh(x) value 
    double result = asinh(x); 
  
    cout << "asinh(-50.0) = " << result << " radians" << endl; 
    cout << "asinh(-50.0) = " << result * 180 / 3.141592 
         << " degrees" << endl; 
    return 0; 
}
输出:
asinh(-50.0) = -4.60527 radians
asinh(-50.0) = -263.863 degrees

错误和异常:当字符串或字符作为参数传递时,该函数不返回任何匹配函数来调用错误。
示例3:

// C++ program to demonstrate 
// the asinh() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    string x = "gfg"; 
  
    // Function call to calculate asinh(x) value 
    double result = asinh(x); 
  
    cout << "asinh(50.0) = " << result << " radians" << endl; 
    cout << "asinh(50.0) = " << result * 180 / 3.141592 
         << " degrees" << endl; 
    return 0; 
}

输出:

prog.cpp:11:25: error: no matching function for call to 'asinh(std::__cxx11::string&)'
  double result = asinh(x);


相关用法


注:本文由纯净天空筛选整理自pawan_asipu大神的英文原创作品 asinh() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。