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

cosm1

Compute cos(x) - 1.

Usage

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

cosm1( x )

Computes cos(x) - 1, where cos is the cosine of a number (in radians). This function should be used instead of manually calculating cos(x) - 1 when the argument is near unity.

var PI = require( '@stdlib/constants/float64/pi' );

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

v = cosm1( PI/4.0 );
// returns ~-0.293

v = cosm1( -PI/6.0 );
// returns ~-0.134

v = cosm1( NaN );
// returns NaN

Examples

var linspace = require( '@stdlib/array/linspace' );
var PI = require( '@stdlib/constants/float64/pi' );
var cosm1 = require( '@stdlib/math/base/special/cosm1' );

var x = linspace( 0.0, 2.0*PI, 100 );
var i;

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