@stdlib/math-base-special-atan
Advanced tools
Comparing version 0.0.7 to 0.0.8
{ | ||
"name": "@stdlib/math-base-special-atan", | ||
"version": "0.0.7", | ||
"version": "0.0.8", | ||
"description": "Compute the arctangent of a number.", | ||
@@ -48,3 +48,3 @@ "license": "Apache-2.0", | ||
"devDependencies": { | ||
"@stdlib/array-linspace": "^0.0.x", | ||
"@stdlib/array-base-linspace": "^0.0.x", | ||
"@stdlib/bench": "^0.0.x", | ||
@@ -51,0 +51,0 @@ "@stdlib/constants-float64-eps": "^0.0.x", |
@@ -23,3 +23,3 @@ <!-- | ||
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url] | ||
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] --> | ||
@@ -75,8 +75,8 @@ > Compute the [arctangent][arctangent] of a number. | ||
```javascript | ||
var linspace = require( '@stdlib/array-linspace' ); | ||
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++ ) { | ||
@@ -91,3 +91,21 @@ console.log( atan( x[ i ] ) ); | ||
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. --> | ||
<section class="related"> | ||
* * * | ||
## See Also | ||
- <span class="package-name">[`@stdlib/math/base/special/acos`][@stdlib/math/base/special/acos]</span><span class="delimiter">: </span><span class="description">compute the arccosine of a number.</span> | ||
- <span class="package-name">[`@stdlib/math/base/special/asin`][@stdlib/math/base/special/asin]</span><span class="delimiter">: </span><span class="description">compute the arcsine of a number.</span> | ||
- <span class="package-name">[`@stdlib/math/base/special/atanh`][@stdlib/math/base/special/atanh]</span><span class="delimiter">: </span><span class="description">compute the hyperbolic arctangent of a number.</span> | ||
</section> | ||
<!-- /.related --> | ||
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. --> | ||
<section class="main-repo" > | ||
@@ -116,3 +134,3 @@ | ||
Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors]. | ||
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors]. | ||
@@ -136,5 +154,16 @@ </section> | ||
<!-- | ||
[dependencies-image]: https://img.shields.io/david/stdlib-js/math-base-special-atan.svg | ||
[dependencies-url]: https://david-dm.org/stdlib-js/math-base-special-atan/main | ||
--> | ||
[umd]: https://github.com/umdjs/umd | ||
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules | ||
[deno-url]: https://github.com/stdlib-js/math-base-special-atan/tree/deno | ||
[umd-url]: https://github.com/stdlib-js/math-base-special-atan/tree/umd | ||
[esm-url]: https://github.com/stdlib-js/math-base-special-atan/tree/esm | ||
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg | ||
@@ -151,4 +180,14 @@ [chat-url]: https://gitter.im/stdlib-js/stdlib/ | ||
<!-- <related-links> --> | ||
[@stdlib/math/base/special/acos]: https://www.npmjs.com/package/@stdlib/math-base-special-acos | ||
[@stdlib/math/base/special/asin]: https://www.npmjs.com/package/@stdlib/math-base-special-asin | ||
[@stdlib/math/base/special/atanh]: https://www.npmjs.com/package/@stdlib/math-base-special-atanh | ||
<!-- </related-links> --> | ||
</section> | ||
<!-- /.links --> |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
41828
188