Skip to content

Commit 80cd97e

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <[email protected]>
1 parent 0bb3d0d commit 80cd97e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 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 )

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
#endif
3030

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include "stdlib/strided/base/stride2offset.h"
2323

2424
/**
25-
* Computes the arithmetic mean of a single-precision floating-point strided array `x` using ordinary recursive summation with extended accumulation and returning an extended precision result.
25+
* Computes the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.
2626
*
2727
* @param N number of indexed elements
2828
* @param X input array

0 commit comments

Comments
 (0)