We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Tangent
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url]
Evaluate the [tangent][tangent] of a number.
bash
npm install @stdlib/math-base-special-tan
javascript
var tan = require( '@stdlib/math-base-special-tan' );
#### tan( x )
Evaluates the [tangent][tangent] of a number
(in radians).
javascript
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
javascript
var linspace = require( '@stdlib/array-base-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 ] ) );
}
c
#include "stdlib/math/base/special/tan.h"
#### stdlib_base_tan( x )
Evaluates the [tangent][tangent] of a number
(in radians).
c
double y = stdlib_base_tan( -3.141592653589793 / 4.0 );
// returns ~-1.0
The function accepts the following arguments:
- x: [in] double
input value.
c
double stdlib_base_tan( const double x );
c
#include "stdlib/math/base/special/tan.h"
#include <stdio.h>
int main( void ) {
const double x[] = { 0.0, 0.523, 0.785, 1.047, 3.14 };
double y;
int i;
for ( i = 0; i < 5; i++ ) {
y = stdlib_base_tan( x[ i ] );
printf( "tan(%lf) = %lf\n", x[ i ], y );
}
}
@stdlib/math-base/special/cos
][@stdlib/math/base/special/cos]: compute the cosine of a number.
- [@stdlib/math-base/special/sin
][@stdlib/math/base/special/sin]: compute the sine of a number.