You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dsmean/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,7 +104,7 @@ The function has the following additional parameters:
104
104
105
105
-**offsetX**: starting index for `x`.
106
106
107
-
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 value in `x` starting from the second value
107
+
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
Calculate the Arithmetic Mean value of a double-precision floating-point strided array, ignoring `NaN` values.
171
+
Computes the arithmetic mean of a single-precision floating-point strided array`x` using extended accumulation and returning an extended precision result.
#### stdlib_strided_dsmean_ndarray( N, \*X, strideX, offsetX )
191
191
192
-
Computes the Arithmetic Mean value of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.
192
+
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.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dsmean/include/stdlib/stats/base/dsmean.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,12 +29,12 @@ extern "C" {
29
29
#endif
30
30
31
31
/**
32
-
* Computes the arithmetic mean of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.
32
+
* Computes the arithmetic mean of a single-precision floating-point strided array `x` using extended accumulation and returning an extended precision result.
* Computes the mean absolute value of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics .
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.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/dsmean/src/main.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ double API_SUFFIX(stdlib_strided_dsmean)( const CBLAS_INT N, const float *X, con
35
35
}
36
36
37
37
/**
38
-
* Computes the maximum value of a double-precision floating-point strided array, ignoring `NaN` values and using alternative indexing semantics.
38
+
* 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.
0 commit comments