Skip to content

Commit 4da82cc

Browse files
committed
chore: fix package description across the package
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2be3696 commit 4da82cc

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

lib/node_modules/@stdlib/stats/strided/dnanmeankbn2/README.md

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

2121
# dnanmeankbn2
2222

23-
> Calculate the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values using a second-order iterative Kahan–Babuška algorithm.
23+
> Calculate the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values, using a second-order iterative Kahan–Babuška algorithm.
2424
2525
<section class="intro">
2626

@@ -53,7 +53,7 @@ var dnanmeankbn2 = require( '@stdlib/stats/strided/dnanmeankbn2' );
5353

5454
#### dnanmeankbn2( N, x, strideX )
5555

56-
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array `x`, ignoring `NaN` values using a second-order iterative Kahan–Babuška algorithm.
56+
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array `x`, ignoring `NaN` values, using a second-order iterative Kahan–Babuška algorithm.
5757

5858
```javascript
5959
var Float64Array = require( '@stdlib/array/float64' );
@@ -98,7 +98,7 @@ var v = dnanmeankbn2( 5, x1, 2 );
9898

9999
#### dnanmeankbn2.ndarray( N, x, strideX, offsetX )
100100

101-
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values using a second-order iterative Kahan–Babuška algorithm and alternative indexing semantics.
101+
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values, using a second-order iterative Kahan–Babuška algorithm and alternative indexing semantics.
102102

103103
```javascript
104104
var Float64Array = require( '@stdlib/array/float64' );
@@ -191,7 +191,7 @@ console.log( v );
191191

192192
#### stdlib_strided_dnanmeankbn2( N, \*X, strideX )
193193

194-
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values using a second-order iterative Kahan–Babuška algorithm.
194+
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values, using a second-order iterative Kahan–Babuška algorithm.
195195

196196
```c
197197
const double x[] = { 1.0, 2.0, 0.0/0.0, 3.0, 0.0/0.0, 4.0, 5.0, 6.0, 0.0/0.0, 7.0, 8.0, 0.0/0.0 };
@@ -212,7 +212,7 @@ double stdlib_strided_dnanmeankbn2( const CBLAS_INT N, const double *X, const CB
212212

213213
#### stdlib_strided_dnanmeankbn2_ndarray( N, \*X, strideX, offsetX )
214214

215-
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values using a second-order iterative Kahan–Babuška algorithm and alternative indexing semantics.
215+
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array, ignoring `NaN` values, using a second-order iterative Kahan–Babuška algorithm and alternative indexing semantics.
216216

217217
```c
218218
const double x[] = { 1.0, 2.0, 0.0/0.0, 3.0, 0.0/0.0, 4.0, 5.0, 6.0, 0.0/0.0, 7.0, 8.0, 0.0/0.0 };

lib/node_modules/@stdlib/stats/strided/dnanmeankbn2/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Compute the arithmetic mean of a double-precision floating-point strided array ignoring the `NaN` using a second-order iterative Kahan–Babuška algorithm.
22+
* Compute the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values, using a second-order iterative Kahan–Babuška algorithm.
2323
*
2424
* @module @stdlib/stats/strided/dnanmeankbn2
2525
*

lib/node_modules/@stdlib/stats/strided/dnanmeankbn2/test/test.dnanmeankbn2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ tape( 'the function has an arity of 3', function test( t ) {
3939
t.end();
4040
});
4141

42-
tape( 'the function calculates the arithmetic mean of a strided array, ignoring the `NaN`', function test( t ) {
42+
tape( 'the function calculates the arithmetic mean of a strided array, ignoring `NaN` values', function test( t ) {
4343
var x;
4444
var v;
4545

lib/node_modules/@stdlib/stats/strided/dnanmeankbn2/test/test.dnanmeankbn2.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ tape( 'the function throws an error if provided a third argument which is not a
130130
}
131131
});
132132

133-
tape( 'the function calculates the arithmetic mean of a strided array, ignoring the `NaN`', opts, function test( t ) {
133+
tape( 'the function calculates the arithmetic mean of a strided array, ignoring `NaN` values', opts, function test( t ) {
134134
var x;
135135
var v;
136136

0 commit comments

Comments
 (0)