@stdlib/stats-incr-sumprod 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +1 -1
- package/README.md +41 -2
- package/package.json +1 -1
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2022 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ limitations under the License.
|
|
|
20
20
|
|
|
21
21
|
# incrsumprod
|
|
22
22
|
|
|
23
|
-
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] [![dependencies][dependencies-image]][dependencies-url]
|
|
23
|
+
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
24
24
|
|
|
25
25
|
> Compute a sum of products incrementally.
|
|
26
26
|
|
|
@@ -133,6 +133,24 @@ console.log( accumulator() );
|
|
|
133
133
|
|
|
134
134
|
<!-- /.examples -->
|
|
135
135
|
|
|
136
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
137
|
+
|
|
138
|
+
<section class="related">
|
|
139
|
+
|
|
140
|
+
* * *
|
|
141
|
+
|
|
142
|
+
## See Also
|
|
143
|
+
|
|
144
|
+
- <span class="package-name">[`@stdlib/stats/incr/msumprod`][@stdlib/stats/incr/msumprod]</span><span class="delimiter">: </span><span class="description">compute a moving sum of products incrementally.</span>
|
|
145
|
+
- <span class="package-name">[`@stdlib/stats/incr/prod`][@stdlib/stats/incr/prod]</span><span class="delimiter">: </span><span class="description">compute a product incrementally.</span>
|
|
146
|
+
- <span class="package-name">[`@stdlib/stats/incr/sum`][@stdlib/stats/incr/sum]</span><span class="delimiter">: </span><span class="description">compute a sum incrementally.</span>
|
|
147
|
+
|
|
148
|
+
</section>
|
|
149
|
+
|
|
150
|
+
<!-- /.related -->
|
|
151
|
+
|
|
152
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
153
|
+
|
|
136
154
|
|
|
137
155
|
<section class="main-repo" >
|
|
138
156
|
|
|
@@ -157,7 +175,7 @@ See [LICENSE][stdlib-license].
|
|
|
157
175
|
|
|
158
176
|
## Copyright
|
|
159
177
|
|
|
160
|
-
Copyright © 2016-
|
|
178
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
161
179
|
|
|
162
180
|
</section>
|
|
163
181
|
|
|
@@ -176,9 +194,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
176
194
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-incr-sumprod/main.svg
|
|
177
195
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-incr-sumprod?branch=main
|
|
178
196
|
|
|
197
|
+
<!--
|
|
198
|
+
|
|
179
199
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/stats-incr-sumprod.svg
|
|
180
200
|
[dependencies-url]: https://david-dm.org/stdlib-js/stats-incr-sumprod/main
|
|
181
201
|
|
|
202
|
+
-->
|
|
203
|
+
|
|
204
|
+
[umd]: https://github.com/umdjs/umd
|
|
205
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
206
|
+
|
|
207
|
+
[deno-url]: https://github.com/stdlib-js/stats-incr-sumprod/tree/deno
|
|
208
|
+
[umd-url]: https://github.com/stdlib-js/stats-incr-sumprod/tree/umd
|
|
209
|
+
[esm-url]: https://github.com/stdlib-js/stats-incr-sumprod/tree/esm
|
|
210
|
+
|
|
182
211
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
183
212
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
184
213
|
|
|
@@ -188,6 +217,16 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
188
217
|
|
|
189
218
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/stats-incr-sumprod/main/LICENSE
|
|
190
219
|
|
|
220
|
+
<!-- <related-links> -->
|
|
221
|
+
|
|
222
|
+
[@stdlib/stats/incr/msumprod]: https://www.npmjs.com/package/@stdlib/stats-incr-msumprod
|
|
223
|
+
|
|
224
|
+
[@stdlib/stats/incr/prod]: https://www.npmjs.com/package/@stdlib/stats-incr-prod
|
|
225
|
+
|
|
226
|
+
[@stdlib/stats/incr/sum]: https://www.npmjs.com/package/@stdlib/stats-incr-sum
|
|
227
|
+
|
|
228
|
+
<!-- </related-links> -->
|
|
229
|
+
|
|
191
230
|
</section>
|
|
192
231
|
|
|
193
232
|
<!-- /.links -->
|