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
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/base/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/array/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import tools = require( '@stdlib/math/array/tools' );
*/
interface Namespace {
/**
* Namespace.
* Special math functions applied to arrays.
*/
special: typeof special;

Expand Down
30 changes: 0 additions & 30 deletions lib/node_modules/@stdlib/math/base/ops/docs/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down Expand Up @@ -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.
*
Expand Down