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 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 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 ] ) );
}
#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-2024. The Stdlib Authors.
0.2.3 (2024-07-28)
<section class="commits">41d41e9
- test: include trailing newlines in Julia-generated JSON fixtures (by Philipp Burckhardt)9ed7d0e
- chore: add missing trailing newlines (by Philipp Burckhardt)A total of 1 person contributed to this release. Thank you to this contributor:
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.