Skip to content

Commit e7a0f7a

Browse files
committed
docs: apply review suggestions
1 parent 862be75 commit e7a0f7a

File tree

1 file changed

+4
-0
lines changed
  • lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn

1 file changed

+4
-0
lines changed

lib/node_modules/@stdlib/blas/ext/base/dnannsumkbn/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,8 @@ console.log( out );
195195
Computes the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm.
196196

197197
```c
198+
#include "stdlib/blas/base/shared.h"
199+
198200
const double x[] = { 1.0, 2.0, 0.0/0.0, 4.0 };
199201
CBLAS_INT n = 0;
200202

@@ -218,6 +220,8 @@ double stdlib_strided_dnannsumkbn( const CBLAS_INT N, const double *X, const CBL
218220
Computes the sum of double-precision floating-point strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm and alternative indexing semantics.
219221

220222
```c
223+
#include "stdlib/blas/base/shared.h"
224+
221225
const double x[] = { 1.0, 2.0, 0.0/0.0, 4.0 };
222226
CBLAS_INT n = 0;
223227

0 commit comments

Comments
 (0)