Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@stdlib/math-base-special-atan
Advanced tools
Compute the arctangent of a number.
npm install @stdlib/math-base-special-atan
var atan = require( '@stdlib/math-base-special-atan' );
Computes the arctangent of a number
.
var v = atan( 0.0 );
// returns ~0.0
v = atan( -3.141592653589793/2.0 );
// returns ~-1.004
v = atan( 3.141592653589793/2.0 );
// returns ~1.004
v = atan( NaN );
// returns NaN
var linspace = require( '@stdlib/array-base-linspace' );
var atan = require( '@stdlib/math-base-special-atan' );
var x = linspace( -1000.0, 1000.0, 100 );
var i;
for ( i = 0; i < x.length; i++ ) {
console.log( atan( x[ i ] ) );
}
@stdlib/math/base/special/acos
: compute the arccosine of a number.@stdlib/math/base/special/asin
: compute the arcsine of a number.@stdlib/math/base/special/atanh
: compute the hyperbolic arctangent of a number.This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.
For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.
See LICENSE.
Copyright © 2016-2022. The Stdlib Authors.
0.0.8 (2022-02-16)
No changes reported for this release.
</section> <!-- /.release --> <section class="release" id="v0.0.7">FAQs
Compute the arctangent of a double-precision floating-point number.
The npm package @stdlib/math-base-special-atan receives a total of 18,084 weekly downloads. As such, @stdlib/math-base-special-atan popularity was classified as popular.
We found that @stdlib/math-base-special-atan demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.