Skip to content

Commit e26b584

Browse files
committed
fix: minor changes
--- 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: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: missing_dependencies - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 764bb44 commit e26b584

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

lib/node_modules/@stdlib/stats/base/dmean/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var dmean = require( '@stdlib/stats/base/dmean' );
5353

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

56-
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array `x`.
56+
Computes the [arithmetic mean][arithmetic-mean] of a double-precision floating-point strided array.
5757

5858
```javascript
5959
var Float64Array = require( '@stdlib/array/float64' );
@@ -112,7 +112,7 @@ The function has the following additional parameters:
112112

113113
- **offsetX**: starting index for `x`.
114114

115-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the `offset` parameter supports indexing semantics based on a starting index. For example, to calculate the [arithmetic mean][arithmetic-mean] for every other element in `x` starting from the second element
115+
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying `buffer`, the `offset` parameter supports indexing semantics based on a starting index. For example, to calculate the [arithmetic mean][arithmetic-mean] for every other element in `x` starting from the second element
116116

117117
```javascript
118118
var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/stats/base/dmean/lib/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
* var dmean = require( '@stdlib/stats/base/dmean' );
2929
*
3030
* var x = new Float64Array( [ 1.0, -2.0, 2.0 ] );
31-
* var N = x.length;
3231
*
3332
* var v = dmean( x.length, x, 1 );
3433
* // returns ~0.3333

lib/node_modules/@stdlib/stats/base/dmean/src/main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* @return output value
3030
*/
3131
double API_SUFFIX(stdlib_strided_dmean)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX ) {
32-
return stdlib_strided_dmeanpn( N, X, strideX );
32+
return API_SUFFIX(stdlib_strided_dmeanpn)( N, X, strideX );
3333
}
3434

3535
/**
@@ -42,5 +42,5 @@ double API_SUFFIX(stdlib_strided_dmean)( const CBLAS_INT N, const double *X, con
4242
* @return output value
4343
*/
4444
double API_SUFFIX(stdlib_strided_dmean_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX ) {
45-
return stdlib_strided_dmeanpn_ndarray( N, X, strideX, offsetX );
45+
return API_SUFFIX(stdlib_strided_dmeanpn_ndarray)( N, X, strideX, offsetX );
4646
}

0 commit comments

Comments
 (0)