Skip to content

Commit 82c213a

Browse files
committed
Add strided interface to compute the arithmetic mean ignoring NaN values and using ORS with extended accumulation
1 parent 2f41a15 commit 82c213a

34 files changed

+3448
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
<!--
2+
3+
@license Apache-2.0
4+
5+
Copyright (c) 2020 The Stdlib Authors.
6+
7+
Licensed under the Apache License, Version 2.0 (the "License");
8+
you may not use this file except in compliance with the License.
9+
You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
19+
-->
20+
21+
# sdsnanmeanors
22+
23+
> Calculate the [arithmetic mean][arithmetic-mean] of a single-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation with extended accumulation.
24+
25+
<section class="intro">
26+
27+
The [arithmetic mean][arithmetic-mean] is defined as
28+
29+
<!-- <equation class="equation" label="eq:arithmetic_mean" align="center" raw="\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i" alt="Equation for the arithmetic mean."> -->
30+
31+
<div class="equation" align="center" data-raw-text="\mu = \frac{1}{n} \sum_{i=0}^{n-1} x_i" data-equation="eq:arithmetic_mean">
32+
<img src="" alt="Equation for the arithmetic mean.">
33+
<br>
34+
</div>
35+
36+
<!-- </equation> -->
37+
38+
</section>
39+
40+
<!-- /.intro -->
41+
42+
<section class="usage">
43+
44+
## Usage
45+
46+
```javascript
47+
var sdsnanmeanors = require( '@stdlib/stats/base/sdsnanmeanors' );
48+
```
49+
50+
#### sdsnanmeanors( N, x, stride )
51+
52+
Computes the [arithmetic mean][arithmetic-mean] of a single-precision floating-point strided array `x`, ignoring `NaN` values and using ordinary recursive summation with extended accumulation.
53+
54+
```javascript
55+
var Float32Array = require( '@stdlib/array/float32' );
56+
57+
var x = new Float32Array( [ 1.0, -2.0, NaN, 2.0 ] );
58+
var N = x.length;
59+
60+
var v = sdsnanmeanors( N, x, 1 );
61+
// returns ~0.3333
62+
```
63+
64+
The function has the following parameters:
65+
66+
- **N**: number of indexed elements.
67+
- **x**: input [`Float32Array`][@stdlib/array/float32].
68+
- **stride**: index increment for `x`.
69+
70+
The `N` and `stride` parameters determine which elements in `x` are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`,
71+
72+
```javascript
73+
var Float32Array = require( '@stdlib/array/float32' );
74+
var floor = require( '@stdlib/math/base/special/floor' );
75+
76+
var x = new Float32Array( [ 1.0, 2.0, 2.0, -7.0, -2.0, 3.0, 4.0, 2.0, NaN ] );
77+
var N = floor( x.length / 2 );
78+
79+
var v = sdsnanmeanors( N, x, 2 );
80+
// returns 1.25
81+
```
82+
83+
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
84+
85+
<!-- eslint-disable stdlib/capitalized-comments -->
86+
87+
```javascript
88+
var Float32Array = require( '@stdlib/array/float32' );
89+
var floor = require( '@stdlib/math/base/special/floor' );
90+
91+
var x0 = new Float32Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN ] );
92+
var x1 = new Float32Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
93+
94+
var N = floor( x0.length / 2 );
95+
96+
var v = sdsnanmeanors( N, x1, 2 );
97+
// returns 1.25
98+
```
99+
100+
#### sdsnanmeanors.ndarray( N, x, stride, offset )
101+
102+
Computes the [arithmetic mean][arithmetic-mean] of a single-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation with extended accumulation and alternative indexing semantics.
103+
104+
```javascript
105+
var Float32Array = require( '@stdlib/array/float32' );
106+
107+
var x = new Float32Array( [ 1.0, -2.0, NaN, 2.0 ] );
108+
var N = x.length;
109+
110+
var v = sdsnanmeanors.ndarray( N, x, 1, 0 );
111+
// returns ~0.33333
112+
```
113+
114+
The function has the following additional parameters:
115+
116+
- **offset**: starting index for `x`.
117+
118+
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
119+
120+
```javascript
121+
var Float32Array = require( '@stdlib/array/float32' );
122+
var floor = require( '@stdlib/math/base/special/floor' );
123+
124+
var x = new Float32Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN ] );
125+
var N = floor( x.length / 2 );
126+
127+
var v = sdsnanmeanors.ndarray( N, x, 2, 1 );
128+
// returns 1.25
129+
```
130+
131+
</section>
132+
133+
<!-- /.usage -->
134+
135+
<section class="notes">
136+
137+
## Notes
138+
139+
- If `N <= 0`, both functions return `NaN`.
140+
- If every indexed element is `NaN`, both functions return `NaN`.
141+
- Accumulated intermediate values are stored as double-precision floating-point numbers.
142+
143+
</section>
144+
145+
<!-- /.notes -->
146+
147+
<section class="examples">
148+
149+
## Examples
150+
151+
<!-- eslint no-undef: "error" -->
152+
153+
```javascript
154+
var randu = require( '@stdlib/random/base/randu' );
155+
var round = require( '@stdlib/math/base/special/round' );
156+
var Float32Array = require( '@stdlib/array/float32' );
157+
var sdsnanmeanors = require( '@stdlib/stats/base/sdsnanmeanors' );
158+
159+
var x;
160+
var i;
161+
162+
x = new Float32Array( 10 );
163+
for ( i = 0; i < x.length; i++ ) {
164+
if ( randu() < 0.2 ) {
165+
x[ i ] = NaN;
166+
} else {
167+
x[ i ] = round( (randu()*100.0) - 50.0 );
168+
}
169+
}
170+
console.log( x );
171+
172+
var v = sdsnanmeanors( x.length, x, 1 );
173+
console.log( v );
174+
```
175+
176+
</section>
177+
178+
<!-- /.examples -->
179+
180+
<section class="links">
181+
182+
[arithmetic-mean]: https://en.wikipedia.org/wiki/Arithmetic_mean
183+
184+
[@stdlib/array/float32]: https://github.com/stdlib-js/stdlib
185+
186+
[mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
187+
188+
</section>
189+
190+
<!-- /.links -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2020 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// MODULES //
22+
23+
var bench = require( '@stdlib/bench' );
24+
var randu = require( '@stdlib/random/base/randu' );
25+
var isnan = require( '@stdlib/math/base/assert/is-nan' );
26+
var pow = require( '@stdlib/math/base/special/pow' );
27+
var Float32Array = require( '@stdlib/array/float32' );
28+
var pkg = require( './../package.json' ).name;
29+
var sdsnanmeanors = require( './../lib/sdsnanmeanors.js' );
30+
31+
32+
// FUNCTIONS //
33+
34+
/**
35+
* Creates a benchmark function.
36+
*
37+
* @private
38+
* @param {PositiveInteger} len - array length
39+
* @returns {Function} benchmark function
40+
*/
41+
function createBenchmark( len ) {
42+
var x;
43+
var i;
44+
45+
x = new Float32Array( len );
46+
for ( i = 0; i < x.length; i++ ) {
47+
if ( randu() < 0.2 ) {
48+
x[ i ] = NaN;
49+
} else {
50+
x[ i ] = ( randu()*20.0 ) - 10.0;
51+
}
52+
}
53+
return benchmark;
54+
55+
function benchmark( b ) {
56+
var v;
57+
var i;
58+
59+
b.tic();
60+
for ( i = 0; i < b.iterations; i++ ) {
61+
v = sdsnanmeanors( x.length, x, 1 );
62+
if ( isnan( v ) ) {
63+
b.fail( 'should not return NaN' );
64+
}
65+
}
66+
b.toc();
67+
if ( isnan( v ) ) {
68+
b.fail( 'should not return NaN' );
69+
}
70+
b.pass( 'benchmark finished' );
71+
b.end();
72+
}
73+
}
74+
75+
76+
// MAIN //
77+
78+
/**
79+
* Main execution sequence.
80+
*
81+
* @private
82+
*/
83+
function main() {
84+
var len;
85+
var min;
86+
var max;
87+
var f;
88+
var i;
89+
90+
min = 1; // 10^min
91+
max = 6; // 10^max
92+
93+
for ( i = min; i <= max; i++ ) {
94+
len = pow( 10, i );
95+
f = createBenchmark( len );
96+
bench( pkg+':len='+len, f );
97+
}
98+
}
99+
100+
main();

0 commit comments

Comments
 (0)