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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Multiply a double-precision floating-point ndarray by a scalar constant and add the result to a second double-precision floating-point ndarray multiplied by a scalar constant.
* Multiply a one-dimensional double-precision floating-point ndarray by a scalar constant and add the result to a second one-dimensional double-precision floating-point ndarray multiplied by a scalar constant.
*
* @module @stdlib/blas/ext/base/ndarray/daxpby
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
// MAIN //

/**
* Multiplies a double-precision floating-point ndarray by a scalar constant and adds the result to a second double-precision floating-point ndarray multiplied by a scalar constant.
* Multiplies a one-dimensional double-precision floating-point ndarray by a scalar constant and adds the result to a second one-dimensional double-precision floating-point ndarray multiplied by a scalar constant.
*
* ## Notes
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/blas/ext/base/ndarray/daxpby",
"version": "0.0.0",
"description": "Multiply a double-precision floating-point ndarray by a scalar constant and add the result to a second double-precision floating-point ndarray multiplied by a scalar constant.",
"description": "Multiply a one-dimensional double-precision floating-point ndarray by a scalar constant and add the result to a second one-dimensional double-precision floating-point ndarray multiplied by a scalar constant.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'use strict';

/**
* Multiply a single-precision floating-point ndarray by a scalar constant and add the result to a second single-precision floating-point ndarray multiplied by a scalar constant.
* Multiply a one-dimensional single-precision floating-point ndarray by a scalar constant and add the result to a second one-dimensional single-precision floating-point ndarray multiplied by a scalar constant.
*
* @module @stdlib/blas/ext/base/ndarray/saxpby
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
// MAIN //

/**
* Multiplies a single-precision floating-point ndarray by a scalar constant and adds the result to a second single-precision floating-point ndarray multiplied by a scalar constant.
* Multiplies a one-dimensional single-precision floating-point ndarray by a scalar constant and adds the result to a second one-dimensional single-precision floating-point ndarray multiplied by a scalar constant.
*
* ## Notes
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/blas/ext/base/ndarray/saxpby",
"version": "0.0.0",
"description": "Multiply a single-precision floating-point ndarray by a scalar constant and add the result to a second single-precision floating-point ndarray multiplied by a scalar constant.",
"description": "Multiply a one-dimensional single-precision floating-point ndarray by a scalar constant and add the result to a second one-dimensional single-precision floating-point ndarray multiplied by a scalar constant.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/constants/float32/e/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @type {number}
*
* @example
* var E = require( '@stdlib/constants/float32/e' );
* var FLOAT32_E = require( '@stdlib/constants/float32/e' );
* // returns 2.7182817459106445
*/

Expand Down