time-to-botec/js/node_modules/@stdlib/math/base/special/acot/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.4 KiB

acot

Compute the inverse cotangent of a number.

Usage

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

acot( x )

Computes the inverse cotangent of a number (in radians).

var v = acot( 2.0 );
// returns ~0.4636

v = acot( Infinity );
// returns 0.0

Examples

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

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

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