Skip to content

Commit 1297c71

Browse files
chore: minor clean up
1 parent 05d34eb commit 1297c71

File tree

2 files changed

+7
-7
lines changed
  • lib/node_modules/@stdlib/stats/base/dsmean

2 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/stats/base/dsmean/docs/repl.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,18 +33,18 @@
3333
// Standard Usage:
3434
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 2.0 ] );
3535
> {{alias}}( x.length, x, 1 )
36-
~0.333
36+
~0.3333
3737

3838
// Using `N` and stride parameters:
3939
> x = new {{alias:@stdlib/array/float32}}( [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ] );
4040
> {{alias}}( 3, x, 2 )
41-
~0.333
41+
~0.3333
4242

4343
// Using view offsets:
4444
> var x0 = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
4545
> var x1 = new {{alias:@stdlib/array/float32}}( x0.buffer, x0.BYTES_PER_ELEMENT*1 );
4646
> {{alias}}( 3, x1, 2 )
47-
~-0.333
47+
~-0.3333
4848

4949

5050
{{alias}}.ndarray( N, x, strideX, offsetX )
@@ -80,12 +80,12 @@
8080
// Standard Usage:
8181
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 2.0 ] );
8282
> {{alias}}.ndarray( x.length, x, 1, 0 )
83-
~0.333
83+
~0.3333
8484

8585
// Using offset parameter:
8686
> var x = new {{alias:@stdlib/array/float32}}( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );
8787
> {{alias}}.ndarray( 3, x, 2, 1 )
88-
~-0.333
88+
~-0.3333
8989

9090
See Also
9191
--------

lib/node_modules/@stdlib/stats/base/dsmean/include/stdlib/stats/base/dsmean.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ extern "C" {
2929
#endif
3030

3131
/**
32-
* Computes the arithmetic mean of a single-precision floating-point strided array `x` using extended accumulation and returning an extended precision result.
32+
* Computes the arithmetic mean of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.
3333
*/
3434
double API_SUFFIX(stdlib_strided_dsmean)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX );
3535

3636
/**
37-
* Computes the arithmetic mean of a single-precision floating-point strided array `x` using extended accumulation and alternative indexing semantics and returning an extended precision result.
37+
* Computes the arithmetic mean of a single-precision floating-point strided array using extended accumulation and alternative indexing semantics and returning an extended precision result.
3838
*/
3939
double API_SUFFIX(stdlib_strided_dsmean_ndarray)( const CBLAS_INT N, const float *X, const CBLAS_INT strideX, const CBLAS_INT offsetX );
4040

0 commit comments

Comments
 (0)