time-to-botec/squiggle/node_modules/@stdlib/math/base/special/atan/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.5 KiB

atan

Compute the arctangent of a number.

Usage

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

atan( x )

Computes the arctangent of a number.

var v = atan( 0.0 );
// returns ~0.0

v = atan( -3.141592653589793/2.0 );
// returns ~-1.004

v = atan( 3.141592653589793/2.0 );
// returns ~1.004

v = atan( NaN );
// returns NaN

Examples

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

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

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