time-to-botec/js/node_modules/@stdlib/math/base/special/tanh/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

1.6 KiB

tanh

Compute the hyperbolic tangent of a number.

Usage

var tanh = require( '@stdlib/math/base/special/tanh' );

tanh( x )

Computes the hyperbolic tangent of a number (in radians).

var v = tanh( 0.0 );
// returns 0.0

v = tanh( -0.0 );
// returns -0.0

v = tanh( 2.0 );
// returns ~0.964

v = tanh( -2.0 );
// returns ~-0.964

v = tanh( NaN );
// returns NaN

Examples

var linspace = require( '@stdlib/array/linspace' );
var tanh = require( '@stdlib/math/base/special/tanh' );

var x = linspace( -4.0, 4.0, 100 );
var i;

for ( i = 0; i < x.length; i++ ) {
    console.log( tanh( x[ i ] ) );
}