time-to-botec/js/node_modules/@stdlib/math/base/special/tan
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
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

Tangent

Evaluate the tangent of a number.

The tangent is defined as

Tangent definition.

Usage

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

tan( x )

Evaluates the tangent of a number (in radians).

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

v = tan( -3.141592653589793/4.0 );
// returns ~-1.0

v = tan( 3.141592653589793/4.0 );
// returns ~1.0

v = tan( NaN );
// returns NaN

Examples

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

var x = linspace( -PI/2.0, PI/2.0, 100 );
var i;

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