assertEquals($expected, $tanh->compute($value), '', 0.001); } /** * @return array */ public function tanhProvider() { return [ [1.0, 0.761, 1], [1.0, 0, 0], [1.0, 1, 4], [1.0, -1, -4], [0.5, 0.462, 1], [0.3, 0, 0], ]; } }