WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit ed415de

Browse files
committed
reviewed and additional changes
1 parent feafa7d commit ed415de

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/dcusumkbn/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dcusumkbn
2222

23-
> Compute the cumulative sum of one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
23+
> Compute the cumulative sum of a one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
2424
2525
<section class="intro">
2626

@@ -38,7 +38,7 @@ var dcusumkbn = require( '@stdlib/blas/ext/base/ndarray/dcusumkbn' );
3838

3939
#### dcusumkbn( arrays )
4040

41-
Computes the cumulative sum of one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
41+
Computes the cumulative sum of a one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
4242

4343
```javascript
4444
var Float64Array = require( '@stdlib/array/float64' );
@@ -117,8 +117,6 @@ console.log( ndarray2array( v ) );
117117

118118
<!-- /.examples -->
119119

120-
<!-- <section class="references"> -->
121-
122120
<section class="references">
123121

124122
## References

lib/node_modules/@stdlib/blas/ext/base/ndarray/dcusumkbn/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import { float64ndarray } from '@stdlib/types/ndarray';
2424

2525
/**
26-
* Computes the cumulative sum of one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
26+
* Computes the cumulative sum of a one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
2727
*
2828
* @param arrays - array-like object containing an input ndarray, an output ndarray, and an ndarray containing the initial sum
2929
* @returns output ndarray

lib/node_modules/@stdlib/blas/ext/base/ndarray/dcusumkbn/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ var strided = require( '@stdlib/blas/ext/base/dcusumkbn' ).ndarray;
3131
// MAIN //
3232

3333
/**
34-
* Computes the cumulative sum of one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
34+
* Computes the cumulative sum of a one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška algorithm.
3535
*
3636
* @param {ArrayLikeObject<Object>} arrays - array-like object containing an input ndarray, an output ndarray, and an ndarray containing the initial sum
37-
* @returns {ndarray} output ndarray
37+
* @returns {number} sum
3838
*
3939
* @example
4040
* var Float64Array = require( '@stdlib/array/float64' );

0 commit comments

Comments
 (0)