diff --git a/lib/node_modules/@stdlib/math/base/special/log/README.md b/lib/node_modules/@stdlib/math/base/special/log/README.md index 53a18dd45643..13accca7e49f 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/README.md +++ b/lib/node_modules/@stdlib/math/base/special/log/README.md @@ -20,7 +20,7 @@ limitations under the License. # Logarithm -> Compute the base `b` [logarithm][logarithm]. +> Compute the base `b` [logarithm][logarithm] of a double-precision floating-point number.
@@ -32,7 +32,7 @@ var log = require( '@stdlib/math/base/special/log' ); #### log( x, b ) -Computes the base `b` logarithm of `x`. +Computes the base `b` logarithm of a double-precision floating-point number. ```javascript var v = log( 100.0, 10.0 ); @@ -113,7 +113,7 @@ for ( i = 0; i < 100; i++ ) { #### stdlib_base_log( x, b ) -Computes the base `b` logarithm of `x`. +Computes the base `b` logarithm of a double-precision floating-point number. ```c double v = stdlib_base_log( 100.0, 10.0 ); diff --git a/lib/node_modules/@stdlib/math/base/special/log/docs/repl.txt b/lib/node_modules/@stdlib/math/base/special/log/docs/repl.txt index 9eacd513ff2e..94584fdbbe8b 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/docs/repl.txt +++ b/lib/node_modules/@stdlib/math/base/special/log/docs/repl.txt @@ -1,6 +1,6 @@ {{alias}}( x, b ) - Computes the base `b` logarithm of `x`. + Computes the base `b` logarithm of a double-precision floating-point number. For negative `b` or `x`, the function returns `NaN`. diff --git a/lib/node_modules/@stdlib/math/base/special/log/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/special/log/docs/types/index.d.ts index 33daed80a0ce..21718f39dc2f 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/special/log/docs/types/index.d.ts @@ -19,7 +19,7 @@ // TypeScript Version: 4.1 /** -* Computes the base `b` logarithm of `x`. +* Computes the base `b` logarithm of a double-precision floating-point number. * * @param x - input value * @param b - base diff --git a/lib/node_modules/@stdlib/math/base/special/log/include/stdlib/math/base/special/log.h b/lib/node_modules/@stdlib/math/base/special/log/include/stdlib/math/base/special/log.h index aba292455203..27d7087c83aa 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/include/stdlib/math/base/special/log.h +++ b/lib/node_modules/@stdlib/math/base/special/log/include/stdlib/math/base/special/log.h @@ -27,7 +27,7 @@ extern "C" { #endif /** -* Computes the base b logarithm of x. +* Computes the base `b` logarithm of a double-precision floating-point number. */ double stdlib_base_log( const double x, const double b ); diff --git a/lib/node_modules/@stdlib/math/base/special/log/lib/index.js b/lib/node_modules/@stdlib/math/base/special/log/lib/index.js index 3de672950eb3..dd75dd9415fd 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/lib/index.js +++ b/lib/node_modules/@stdlib/math/base/special/log/lib/index.js @@ -19,7 +19,7 @@ 'use strict'; /** -* Compute the base `b` logarithm. +* Compute the base `b` logarithm of a double-precision floating-point number. * * @module @stdlib/math/base/special/log * diff --git a/lib/node_modules/@stdlib/math/base/special/log/lib/main.js b/lib/node_modules/@stdlib/math/base/special/log/lib/main.js index db6dbea371d2..4f406396ec1f 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/lib/main.js +++ b/lib/node_modules/@stdlib/math/base/special/log/lib/main.js @@ -26,7 +26,7 @@ var ln = require( '@stdlib/math/base/special/ln' ); // MAIN // /** -* Computes the base `b` logarithm of `x`. +* Computes the base `b` logarithm of a double-precision floating-point number. * * @param {NonNegativeNumber} x - input value * @param {NonNegativeNumber} b - base diff --git a/lib/node_modules/@stdlib/math/base/special/log/lib/native.js b/lib/node_modules/@stdlib/math/base/special/log/lib/native.js index f74d33b3edce..7fe4d8d2bcd3 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/lib/native.js +++ b/lib/node_modules/@stdlib/math/base/special/log/lib/native.js @@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' ); // MAIN // /** -* Computes the base b logarithm of x. +* Computes the base `b` logarithm of a double-precision floating-point number. * * @private * @param {number} x - input value diff --git a/lib/node_modules/@stdlib/math/base/special/log/package.json b/lib/node_modules/@stdlib/math/base/special/log/package.json index 6a892aa89a83..656a59b4d88f 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/package.json +++ b/lib/node_modules/@stdlib/math/base/special/log/package.json @@ -1,7 +1,7 @@ { "name": "@stdlib/math/base/special/log", "version": "0.0.0", - "description": "Base `b` logarithm.", + "description": "Compute the base `b` logarithm of a double-precision floating-point number.", "license": "Apache-2.0", "author": { "name": "The Stdlib Authors", diff --git a/lib/node_modules/@stdlib/math/base/special/log/src/main.c b/lib/node_modules/@stdlib/math/base/special/log/src/main.c index 66e96f8b095f..8ec3fb319433 100644 --- a/lib/node_modules/@stdlib/math/base/special/log/src/main.c +++ b/lib/node_modules/@stdlib/math/base/special/log/src/main.c @@ -20,7 +20,7 @@ #include "stdlib/math/base/special/ln.h" /** -* Computes the base b logarithm of x. +* Computes the base `b` logarithm of a double-precision floating-point number. * * @param x input value * @param b input value