@stdlib/stats-base-cumaxabs 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.
Files changed (3) hide show
  1. package/NOTICE +1 -1
  2. package/README.md +40 -2
  3. package/package.json +1 -1
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2021 The Stdlib Authors.
1
+ Copyright (c) 2016-2022 The Stdlib Authors.
package/README.md CHANGED
@@ -20,7 +20,7 @@ limitations under the License.
20
20
 
21
21
  # cumaxabs
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
  > Calculate the cumulative maximum absolute value of a strided array.
26
26
 
@@ -177,6 +177,25 @@ console.log( y );
177
177
 
178
178
  <!-- /.references -->
179
179
 
180
+ <!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
181
+
182
+ <section class="related">
183
+
184
+ * * *
185
+
186
+ ## See Also
187
+
188
+ - <span class="package-name">[`@stdlib/stats/base/cumax`][@stdlib/stats/base/cumax]</span><span class="delimiter">: </span><span class="description">calculate the cumulative maximum of a strided array.</span>
189
+ - <span class="package-name">[`@stdlib/stats/base/cuminabs`][@stdlib/stats/base/cuminabs]</span><span class="delimiter">: </span><span class="description">calculate the cumulative minimum absolute value of a strided array.</span>
190
+ - <span class="package-name">[`@stdlib/stats/base/dcumaxabs`][@stdlib/stats/base/dcumaxabs]</span><span class="delimiter">: </span><span class="description">calculate the cumulative maximum absolute value of double-precision floating-point strided array elements.</span>
191
+ - <span class="package-name">[`@stdlib/stats/base/scumaxabs`][@stdlib/stats/base/scumaxabs]</span><span class="delimiter">: </span><span class="description">calculate the cumulative maximum absolute value of single-precision floating-point strided array elements.</span>
192
+
193
+ </section>
194
+
195
+ <!-- /.related -->
196
+
197
+ <!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
198
+
180
199
 
181
200
  <section class="main-repo" >
182
201
 
@@ -201,7 +220,7 @@ See [LICENSE][stdlib-license].
201
220
 
202
221
  ## Copyright
203
222
 
204
- Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
223
+ Copyright &copy; 2016-2022. The Stdlib [Authors][stdlib-authors].
205
224
 
206
225
  </section>
207
226
 
@@ -220,9 +239,20 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
220
239
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-cumaxabs/main.svg
221
240
  [coverage-url]: https://codecov.io/github/stdlib-js/stats-base-cumaxabs?branch=main
222
241
 
242
+ <!--
243
+
223
244
  [dependencies-image]: https://img.shields.io/david/stdlib-js/stats-base-cumaxabs.svg
224
245
  [dependencies-url]: https://david-dm.org/stdlib-js/stats-base-cumaxabs/main
225
246
 
247
+ -->
248
+
249
+ [umd]: https://github.com/umdjs/umd
250
+ [es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
251
+
252
+ [deno-url]: https://github.com/stdlib-js/stats-base-cumaxabs/tree/deno
253
+ [umd-url]: https://github.com/stdlib-js/stats-base-cumaxabs/tree/umd
254
+ [esm-url]: https://github.com/stdlib-js/stats-base-cumaxabs/tree/esm
255
+
226
256
  [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
227
257
  [chat-url]: https://gitter.im/stdlib-js/stdlib/
228
258
 
@@ -236,10 +266,18 @@ Copyright &copy; 2016-2021. The Stdlib [Authors][stdlib-authors].
236
266
 
237
267
  [mdn-typed-array]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
238
268
 
269
+ <!-- <related-links> -->
270
+
271
+ [@stdlib/stats/base/cumax]: https://www.npmjs.com/package/@stdlib/stats-base-cumax
272
+
273
+ [@stdlib/stats/base/cuminabs]: https://www.npmjs.com/package/@stdlib/stats-base-cuminabs
274
+
239
275
  [@stdlib/stats/base/dcumaxabs]: https://www.npmjs.com/package/@stdlib/stats-base-dcumaxabs
240
276
 
241
277
  [@stdlib/stats/base/scumaxabs]: https://www.npmjs.com/package/@stdlib/stats-base-scumaxabs
242
278
 
279
+ <!-- </related-links> -->
280
+
243
281
  </section>
244
282
 
245
283
  <!-- /.links -->
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/stats-base-cumaxabs",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Calculate the cumulative maximum absolute value of a strided array.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {