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

asinh

Compute the hyperbolic arcsine of a number.

Usage

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

asinh( x )

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

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

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

v = asinh( 2.0 );
// returns ~1.444

v = asinh( -2.0 );
// returns ~-1.444

v = asinh( NaN );
// returns NaN

v = asinh( -Infinity );
// returns -Infinity

v = asinh( Infinity );
// returns Infinity

Examples

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

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

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