diff --git a/lib/node_modules/@stdlib/math/base/special/atandf/README.md b/lib/node_modules/@stdlib/math/base/special/atandf/README.md index c859bffab095..b965842571ca 100644 --- a/lib/node_modules/@stdlib/math/base/special/atandf/README.md +++ b/lib/node_modules/@stdlib/math/base/special/atandf/README.md @@ -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.
@@ -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 diff --git a/lib/node_modules/@stdlib/math/base/special/atandf/lib/native.js b/lib/node_modules/@stdlib/math/base/special/atandf/lib/native.js index 57cc6efee8e0..1f911d3cd19c 100644 --- a/lib/node_modules/@stdlib/math/base/special/atandf/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/atandf/lib/native.js @@ -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) * diff --git a/lib/node_modules/@stdlib/math/base/special/atandf/package.json b/lib/node_modules/@stdlib/math/base/special/atandf/package.json index bfd0b5239ef7..0dc84efc59f5 100644 --- a/lib/node_modules/@stdlib/math/base/special/atandf/package.json +++ b/lib/node_modules/@stdlib/math/base/special/atandf/package.json @@ -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", diff --git a/lib/node_modules/@stdlib/math/base/special/atandf/src/main.c b/lib/node_modules/@stdlib/math/base/special/atandf/src/main.c index a160fd0cb591..c2dfbd831320 100644 --- a/lib/node_modules/@stdlib/math/base/special/atandf/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/atandf/src/main.c @@ -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 ); diff --git a/lib/node_modules/@stdlib/math/base/special/atandf/test/fixtures/julia/REQUIRE b/lib/node_modules/@stdlib/math/base/special/atandf/test/fixtures/julia/REQUIRE index ae40bf736408..308c3be89c85 100644 --- a/lib/node_modules/@stdlib/math/base/special/atandf/test/fixtures/julia/REQUIRE +++ b/lib/node_modules/@stdlib/math/base/special/atandf/test/fixtures/julia/REQUIRE @@ -1,2 +1,2 @@ julia 1.5 -JSON 0.21 \ No newline at end of file +JSON 0.21