Berin Loritsch <[EMAIL PROTECTED]> asks:

> Speaking of accademic, anyone have a Java implementation of 
> tanh(x)?  The java.lang.Math class only has tan(x) or 
> atan(x), but no hyperbolic function.

Spoke to soon, Google search digs it up: 

        http://www.bsdg.org/swag/MATH/0067.PAS.html

Yields:

 TANH := SINH(x)/COSH(x);

 SINH := (EXP(x)-EXP(-x))/2;

 COSH := (EXP(x)+EXP(-x))/2;

Reply via email to