Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/node_modules/@stdlib/math/base/special/atandf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ limitations under the License.

# atandf

> Compute the [arctangent][arctangent] in degrees of a single-precision floating-point number.
> Compute the [arctangent][arctangent] (in degrees) of a single-precision floating-point number.

<section class="usage">

Expand All @@ -36,6 +36,7 @@ Computes the [arctangent][arctangent] (in degrees) of a single-precision floatin

```javascript
var sqrtf = require( '@stdlib/math/base/special/sqrtf' );

var v = atandf( 0.0 );
// returns 0.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var addon = require( './../src/addon.node' );
/**
* Computes the arctangent (in degrees) of a single-precision floating-point number.
*
* @private
* @param {number} x - input value
* @returns {number} arctangent (in degrees)
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/math/base/special/atandf",
"version": "0.0.0",
"description": "Compute the arctangent(in degrees) of a single-precision floating-point number.",
"description": "Compute the arctangent (in degrees) of a single-precision floating-point number.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* Computes the arctangent (in degrees) of a single-precision floating-point number.
*
* @param x input value
* @return evaluated rational function
* @return arctangent (in degrees)
*
* @example
* float out = stdlib_base_atandf( 0.5f );
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
julia 1.5
JSON 0.21
JSON 0.21
Loading