當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ tanh()用法及代碼示例


C++ 中的tanh() 函數返回以弧度給出的角度的雙曲正切。

該函數在<cmath> 頭文件中定義。

[Mathematics] tanh x = tanh(x) [In C++ Programming]

tanh() 原型 [從 C++ 11 標準開始]

double tanh(double x);
float tanh(float x);
long double tanh(long double x);
double tanh(T x); // For integral type

tanh() 函數接受一個以弧度表示的參數,並以 double , floatlong double 類型返回該角度的雙曲正切。

x 的雙曲正切由下式給出,

C++ tanh() function
tanh()的公式

參數:

tanh() 函數采用一個強製參數,以弧度表示雙曲角。

返回:

tanh() 函數返回參數的雙曲正切值。

示例 1:tanh() 函數在 C++ 中如何工作?

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
	double x = 0.50, result;
	result = tanh(x);
	cout << "tanh(x) = " << result << endl;

	// x in Degrees
	double xDegrees = 90;
	x = xDegrees * 3.14159/180;

	result = tanh(x);
	cout << "tanh(x) = " << result << endl;

	return 0;
}

運行程序時,輸出將是:

tanh(x) = 0.462117
tanh(x) = 0.917152

示例 2:tanh() 具有整數類型的函數

#include <iostream>
#include <cmath>
using namespace std;
int main()
{
	int x = 5;
	double result;

	result = tanh(x);
	cout << "tanh(x) = " << result << endl;
	
	return 0;
}

運行程序時,輸出將是:

tanh(x) = 0.999909

相關用法


注:本文由純淨天空篩選整理自 C++ tanh()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。