diff --git a/lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts index 637549f213bf..b8dad1aca2c6 100644 --- a/lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts @@ -1171,10 +1171,10 @@ interface Namespace { gnrm2: typeof gnrm2; /** - * Multiplies a vector `x` by a constant `alpha`. + * Multiplies a vector by a scalar constant. * * @param N - number of indexed elements - * @param alpha - constant + * @param alpha - scalar constant * @param x - input array * @param stride - stride length * @returns input array diff --git a/lib/node_modules/@stdlib/math/array/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/array/docs/types/index.d.ts index 943ee8078750..722a26555559 100644 --- a/lib/node_modules/@stdlib/math/array/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/array/docs/types/index.d.ts @@ -28,7 +28,7 @@ import tools = require( '@stdlib/math/array/tools' ); */ interface Namespace { /** - * Namespace. + * Special math functions applied to arrays. */ special: typeof special; diff --git a/lib/node_modules/@stdlib/math/base/ops/docs/types/index.d.ts b/lib/node_modules/@stdlib/math/base/ops/docs/types/index.d.ts index 1c9eebae09d3..6042839eeb1d 100644 --- a/lib/node_modules/@stdlib/math/base/ops/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/math/base/ops/docs/types/index.d.ts @@ -31,7 +31,6 @@ import csub = require( '@stdlib/math/base/ops/csub' ); import csubf = require( '@stdlib/math/base/ops/csubf' ); import imul = require( '@stdlib/math/base/ops/imul' ); import imuldw = require( '@stdlib/math/base/ops/imuldw' ); -import mulf = require( '@stdlib/number/float32/base/mul' ); import umuldw = require( '@stdlib/math/base/ops/umuldw' ); import addf = require( '@stdlib/number/float32/base/add' ); import divf = require( '@stdlib/number/float32/base/div' ); @@ -445,35 +444,6 @@ interface Namespace { */ imuldw: typeof imuldw; - /** - * Multiplies two single-precision floating-point numbers `x` and `y`. - * - * @param x - first input value - * @param y - second input value - * @returns result - * - * @example - * var v = ns.mulf( -1.0, 5.0 ); - * // returns -5.0 - * - * @example - * var v = ns.mulf( 2.0, 5.0 ); - * // returns 10.0 - * - * @example - * var v = ns.mulf( 0.0, 5.0 ); - * // returns 0.0 - * - * @example - * var v = ns.mulf( -0.0, 0.0 ); - * // returns -0.0 - * - * @example - * var v = ns.mulf( NaN, NaN ); - * // returns NaN - */ - mulf: typeof mulf; - /** * Performs multiplication of two unsigned 32-bit integers and returns an array of two unsigned 32-bit integers which represents the unsigned 64-bit integer product. *