関数ML_tanh マニュアル
(The documentation of function
ML_tanh
)
Last Update: 2024/10/9
◆機能・用途
(Purpose)
tanh関数を計算する。
Calculate a
tanh
function.
◆形式
(Format)
#include <machine_learning/mathfunc.h>
inline double ML_tanh(const double y)
◆引数
(Arguments)
y
tanh関数の計算に用いる\(y\)の値。
The value of \(y\) used in the calculation of the
tanh
function.
◆戻り値
(Return value)
計算したtanh関数の\(y\)での値。 tanh関数の定義は
計算式
参照。
The value of the tanh function at \(y\), defined by the
formula
.
◆使用例
(Example)
double x=ML_tanh(1.0);