C++ 中的sinh() 函數返回以弧度為單位的角度的雙曲正弦值。
該函數在<cmath> 頭文件中定義。
[Mathematics] sinh x = sinh(x) [In C++ Programming]
sinh() 原型 [從 C++ 11 標準開始]
double sinh(double x); float sinh(float x); long double sinh(long double x); double sinh(T x); // For integral type.
sinh() 函數接受一個以弧度表示的參數,並以 double
, float
或 long double
類型返回該角度的雙曲正弦值。
x 的雙曲正弦由下式給出,
參數:
sinh() 函數采用一個強製參數,以弧度表示雙曲角。
返回:
sinh() 函數返回參數的雙曲正弦值。
如果結果的幅度太大而無法用返回類型的值表示,則函數返回帶有正確符號的HUGE_VAL,並發生溢出範圍錯誤。
示例 1:sinh() 函數如何工作?
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
double x = 3.55, result;
result = sinh(x);
cout << "sinh(x) = " << result << endl;
// x in Degrees
double xDegrees = 90;
x = xDegrees * 3.14159/180;
result = sinh(x);
cout << "sinh(x) = " << result << endl;
return 0;
}
運行程序時,輸出將是:
sinh(x) = 17.3923 sinh(x) = 2.3013
示例 2:sinh() 具有整數類型的函數
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int x = -3;
double result;
result = sinh(x);
cout << "sinh(x) = " << result << endl;
return 0;
}
運行程序時,輸出將是:
sinh(x) = -10.0179
相關用法
- C++ sinh()用法及代碼示例
- C++ complex sinh()用法及代碼示例
- C++ sin()用法及代碼示例
- C++ signbit()用法及代碼示例
- C++ signal()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ std::less_equal用法及代碼示例
- C++ set rbegin()用法及代碼示例
- C++ string::length()用法及代碼示例
- C++ set upper_bound()用法及代碼示例
- C++ set crbegin用法及代碼示例
- C++ std::is_member_object_pointer模板用法及代碼示例
- C++ std::copy_n()用法及代碼示例
- C++ std::string::insert()用法及代碼示例
- C++ std::is_sorted_until用法及代碼示例
- C++ std::iota用法及代碼示例
- C++ set size用法及代碼示例
- C++ std::numeric_limits::digits用法及代碼示例
- C++ sscanf()用法及代碼示例
注:本文由純淨天空篩選整理自 C++ sinh()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。