PHP | tanh( )函数
tanh()函数是PHP中的内置函数,用于查找作为参数传递给它的角度的双曲正切。
任何参数arg的双曲正切定义为,
sinh(arg) / cosh(arg)
其中,sinh() 是双曲正弦函数, cosh() 是双曲余弦函数。
句法:
float tanh($value)
参数:此函数接受单个参数 $value。它是您要查找其双曲正切值的数字。此参数的值必须以弧度为单位。
返回值:它返回一个浮点数,它是作为参数传递给它的数字的双曲正切值。
例子:
Input : tanh(0.50)
Output : 0.46211715726001
Input : tanh(-0.50)
Output : -0.46211715726001
Input : tanh(5)
Output : 0.9999092042626
Input : tanh(M_PI_4)
Output : 0.65579420263267
下面的程序使用不同的 $value 值来说明PHP中的 tanh()函数:
- 传递 0.50 作为参数:
输出:
0.46211715726001
- 传递 -0.50 作为参数:
输出:
-0.46211715726001
- 将 5 作为参数传递:
输出:
0.9999092042626
- 当 (M_PI_4) 作为参数传递时,M_PI 是PHP中的常量,其值为 0.78539816339744830962 :
输出:
0.65579420263267
参考:
http:// PHP.net/manual/en/函数.tanh。 PHP