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
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/csscal/lib/csscal.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var ndarray = require( './ndarray.js' );
* Scales a single-precision complex floating-point vector by a single-precision floating-point constant.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {number} alpha - constant
* @param {number} alpha - scalar constant
* @param {Complex64Array} x - input array
* @param {integer} strideX - `x` stride length
* @returns {Complex64Array} input array
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/base/csscal/lib/ndarray.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var scale = require( '@stdlib/complex/float32/base/scale' ).strided;
* Scales a single-precision complex floating-point vector by a single-precision floating-point constant.
*
* @param {PositiveInteger} N - number of indexed elements
* @param {number} alpha - constant
* @param {number} alpha - scalar constant
* @param {Complex64Array} x - input array
* @param {integer} strideX - `x` stride length
* @param {NonNegativeInteger} offsetX - starting `x` index
Expand Down
Loading