MCPcopy Index your code
hub / github.com/microsoft/SandDance / tanh

Function tanh

docs/app/js/sanddance-app.js:128582–128584  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

128580 return ((x = Math.exp(x)) - 1 / x) / 2;
128581}
128582function tanh(x) {
128583 return ((x = Math.exp(2 * x)) - 1) / (x + 1);
128584}
128585exports.default = function zoomRho(rho, rho2, rho4) {
128586 // p0 = [ux0, uy0, w0]
128587 // p1 = [ux1, uy1, w1]

Callers 1

zoomFunction · 0.70

Calls 1

expFunction · 0.70

Tested by

no test coverage detected