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 20ab9b8

Browse files
committed
spacing and formating
1 parent c3e1f47 commit 20ab9b8

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

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

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ 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 one-dimensional double-precision floating-point ndarray using an improved Kahan–Babuška
24+
> algorithm.
2425
2526
<section class="intro">
2627

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

3940
#### dcusumkbn( arrays )
4041

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

4345
```javascript
4446
var Float64Array = require( '@stdlib/array/float64' );
@@ -117,6 +119,18 @@ console.log( ndarray2array( v ) );
117119

118120
<!-- /.examples -->
119121

122+
<!-- <section class="references"> -->
123+
124+
<section class="references">
125+
126+
## References
127+
128+
- Klein, Andreas. 2005. "A Generalized Kahan-Babuška-Summation-Algorithm." _Computing_ 76 (3): 279–93. doi:[10.1007/s00607-005-0139-x][@klein:2005a].
129+
130+
</section>
131+
132+
<!-- /.references -->
133+
120134
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
121135

122136
<section class="related">
@@ -129,6 +143,8 @@ console.log( ndarray2array( v ) );
129143

130144
<section class="links">
131145

146+
[@klein:2005a]: https://doi.org/10.1007/s00607-005-0139-x
147+
132148
</section>
133149

134150
<!-- /.links -->

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function main() {
105105
for ( i = min; i <= max; i++ ) {
106106
len = pow( 10, i );
107107
f = createBenchmark( len );
108-
bench( pkg+':len='+len, f );
108+
bench( pkg + ':len=' + len, f );
109109
}
110110
}
111111

0 commit comments

Comments
 (0)