tanh.js 98 B

12345
  1. export default function(x) {
  2. var r = Math.exp(x);
  3. r = (r - 1 / r) / (r + 1 / r);
  4. return r;
  5. }