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';

/**
* Add elements of a double-precision floating-point ndarray to the corresponding elements of a second double-precision floating-point ndarray and assign the results to the second ndarray.
* Add elements of a one-dimensional double-precision floating-point ndarray to the corresponding elements of a second one-dimensional double-precision floating-point ndarray and assign the results to the second ndarray.
*
* @module @stdlib/blas/ext/base/ndarray/dxpy
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var strided = require( '@stdlib/blas/ext/base/dxpy' ).ndarray;
// MAIN //

/**
* Adds elements of a double-precision floating-point ndarray to the corresponding elements of a second double-precision floating-point ndarray and assigns the results to the second ndarray.
* Adds elements of a one-dimensional double-precision floating-point ndarray to the corresponding elements of a second one-dimensional double-precision floating-point ndarray and assigns the results to the second ndarray.
*
* ## Notes
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/blas/ext/base/ndarray/dxpy",
"version": "0.0.0",
"description": "Add elements of a double-precision floating-point ndarray to the corresponding elements of a second double-precision floating-point ndarray and assign the results to the second ndarray.",
"description": "Add elements of a one-dimensional double-precision floating-point ndarray to the corresponding elements of a second one-dimensional double-precision floating-point ndarray and assign the results to the second ndarray.",
"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';

/**
* Add elements of a single-precision floating-point ndarray to the corresponding elements of a second single-precision floating-point ndarray and assign the results to the second ndarray.
* Add elements of a one-dimensional single-precision floating-point ndarray to the corresponding elements of a second one-dimensional single-precision floating-point ndarray and assign the results to the second ndarray.
*
* @module @stdlib/blas/ext/base/ndarray/sxpy
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var strided = require( '@stdlib/blas/ext/base/sxpy' ).ndarray;
// MAIN //

/**
* Adds elements of a single-precision floating-point ndarray to the corresponding elements of a second single-precision floating-point ndarray and assigns the results to the second ndarray.
* Adds elements of a one-dimensional single-precision floating-point ndarray to the corresponding elements of a second one-dimensional single-precision floating-point ndarray and assigns the results to the second ndarray.
*
* ## Notes
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@stdlib/blas/ext/base/ndarray/sxpy",
"version": "0.0.0",
"description": "Add elements of a single-precision floating-point ndarray to the corresponding elements of a second single-precision floating-point ndarray and assign the results to the second ndarray.",
"description": "Add elements of a one-dimensional single-precision floating-point ndarray to the corresponding elements of a second one-dimensional single-precision floating-point ndarray and assign the results to the second ndarray.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
Expand Down