math-tan v1.0.0
Tangent
Computes the tangent of a number.
The tangent is defined as
Installation
$ npm install math-tanUsage
var tan = require( 'math-tan' );tan( x )
Computes the tangent of a number.
var val = tan( 0 );
// returns ~0
val = tan( -Math.PI/4 );
// returns ~-1
val = tan( Math.PI/4 );
// returns ~1Examples
var linspace = require( 'compute-linspace' );
var tan = require( 'math-tan' );
var x = linspace( -Math.PI/2, Math.PI/2, 100 );
var i;
for ( i = 0; i < x.length; i++ ) {
console.log( tan( x[ i ] ) );
}To run the example code from the top-level application directory,
$ node ./examples/index.jsTests
Unit
This repository uses tape for unit tests. To run the tests, execute the following command in the top-level application directory:
$ make testAll new feature development should have corresponding unit tests to validate correct functionality.
Test Coverage
This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:
$ make test-covIstanbul creates a ./reports/coverage directory. To access an HTML version of the report,
$ make view-covBrowser Support
This repository uses Testling for browser testing. To run the tests in a (headless) local web browser, execute the following command in the top-level application directory:
$ make test-browsersTo view the tests in a local web browser,
$ make view-browser-testsLicense
Copyright
Copyright © 2016. The Compute.io Authors.