
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@stdlib/math-base-special-atan
Advanced tools
Compute the arctangent of a double-precision floating-point number.
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!
Compute the arctangent of a double-precision floating-point number.
npm install @stdlib/math-base-special-atan
var atan = require( '@stdlib/math-base-special-atan' );
Computes the arctangent of a double-precision floating-point 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 uniform = require( '@stdlib/random-array-uniform' );
var logEachMap = require( '@stdlib/console-log-each-map' );
var atan = require( '@stdlib/math-base-special-atan' );
var x = uniform( 100, -1000.0, 1000.0, {
'dtype': 'float64'
});
logEachMap( 'atan(%0.4f) = %0.4f', x, atan );
#include "stdlib/math/base/special/atan.h"
Computes the arctangent of a double-precision floating-point number.
double out = stdlib_base_atan( 0.0 );
// returns ~0.0
out = stdlib_base_atan( -3.141592653589793/2.0 );
// returns ~-1.004
The function accepts the following arguments:
[in] double input value.double stdlib_base_atan( const double x );
#include "stdlib/math/base/special/atan.h"
#include <stdio.h>
int main( void ) {
const double x[] = { -1000.0, -777.78, -555.56, -333.33, -111.11, 111.11, 333.33, 555.56, 777.78, 1000.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
v = stdlib_base_atan( x[ i ] );
printf( "atan(%lf) = %lf\n", x[ i ], v );
}
}
@stdlib/math-base/special/acos: compute the arccosine of a double-precision floating-point number.@stdlib/math-base/special/asin: compute the arcsine of a double-precision floating-point number.@stdlib/math-base/special/atanh: compute the hyperbolic arctangent of a double-precision floating-point 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.
Copyright © 2016-2026. The Stdlib Authors.
FAQs
Compute the arctangent of a double-precision floating-point number.
The npm package @stdlib/math-base-special-atan receives a total of 404 weekly downloads. As such, @stdlib/math-base-special-atan popularity was classified as not 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 4 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.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.