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