tanh.js (239B)
1 export var tanhDocs = { 2 name: 'tanh', 3 category: 'Trigonometry', 4 syntax: ['tanh(x)'], 5 description: 'Compute the hyperbolic tangent of x in radians.', 6 examples: ['tanh(0.5)', 'sinh(0.5) / cosh(0.5)'], 7 seealso: ['sinh', 'cosh'] 8 };