UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 264 B
function tanh(arg) { // discuss at: http://phpjs.org/functions/tanh/ // original by: Onno Marsman // example 1: tanh(5.4251848798444815); // returns 1: 0.9999612058841574 return (Math.exp(arg) - Math.exp(-arg)) / (Math.exp(arg) + Math.exp(-arg)); }