UNPKG

phpjs

Version:

php.js offers community built php functions in javascript

8 lines (7 loc) 263 B
function tanh(arg) { // From: http://phpjs.org/functions // + 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)); }