@stdlib/random-streams-laplace 0.0.6 → 0.0.7
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 +40 -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
|
# Laplace Random Numbers
|
|
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
|
> Create a [readable stream][readable-stream] for generating pseudorandom numbers drawn from a [Laplace (double exponential)][laplace] distribution.
|
|
26
26
|
|
|
@@ -487,6 +487,8 @@ npm install -g @stdlib/random-streams-laplace
|
|
|
487
487
|
```
|
|
488
488
|
|
|
489
489
|
</section>
|
|
490
|
+
<!-- CLI usage documentation. -->
|
|
491
|
+
|
|
490
492
|
|
|
491
493
|
<section class="usage">
|
|
492
494
|
|
|
@@ -543,6 +545,23 @@ $ random-laplace 0.0 1.0 -n 10 --seed 1234
|
|
|
543
545
|
|
|
544
546
|
<!-- /.cli -->
|
|
545
547
|
|
|
548
|
+
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->
|
|
549
|
+
|
|
550
|
+
<section class="related">
|
|
551
|
+
|
|
552
|
+
* * *
|
|
553
|
+
|
|
554
|
+
## See Also
|
|
555
|
+
|
|
556
|
+
- <span class="package-name">[`@stdlib/random/base/laplace`][@stdlib/random/base/laplace]</span><span class="delimiter">: </span><span class="description">Laplace (double exponential) distributed pseudorandom numbers.</span>
|
|
557
|
+
- <span class="package-name">[`@stdlib/random/iter/laplace`][@stdlib/random/iter/laplace]</span><span class="delimiter">: </span><span class="description">create an iterator for generating pseudorandom numbers drawn from a Laplace distribution.</span>
|
|
558
|
+
|
|
559
|
+
</section>
|
|
560
|
+
|
|
561
|
+
<!-- /.related -->
|
|
562
|
+
|
|
563
|
+
<!-- Section for all links. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->
|
|
564
|
+
|
|
546
565
|
|
|
547
566
|
<section class="main-repo" >
|
|
548
567
|
|
|
@@ -567,7 +586,7 @@ See [LICENSE][stdlib-license].
|
|
|
567
586
|
|
|
568
587
|
## Copyright
|
|
569
588
|
|
|
570
|
-
Copyright © 2016-
|
|
589
|
+
Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
571
590
|
|
|
572
591
|
</section>
|
|
573
592
|
|
|
@@ -586,9 +605,20 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
586
605
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/random-streams-laplace/main.svg
|
|
587
606
|
[coverage-url]: https://codecov.io/github/stdlib-js/random-streams-laplace?branch=main
|
|
588
607
|
|
|
608
|
+
<!--
|
|
609
|
+
|
|
589
610
|
[dependencies-image]: https://img.shields.io/david/stdlib-js/random-streams-laplace.svg
|
|
590
611
|
[dependencies-url]: https://david-dm.org/stdlib-js/random-streams-laplace/main
|
|
591
612
|
|
|
613
|
+
-->
|
|
614
|
+
|
|
615
|
+
[umd]: https://github.com/umdjs/umd
|
|
616
|
+
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
617
|
+
|
|
618
|
+
[deno-url]: https://github.com/stdlib-js/random-streams-laplace/tree/deno
|
|
619
|
+
[umd-url]: https://github.com/stdlib-js/random-streams-laplace/tree/umd
|
|
620
|
+
[esm-url]: https://github.com/stdlib-js/random-streams-laplace/tree/esm
|
|
621
|
+
|
|
592
622
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
593
623
|
[chat-url]: https://gitter.im/stdlib-js/stdlib/
|
|
594
624
|
|
|
@@ -608,6 +638,14 @@ Copyright © 2016-2021. The Stdlib [Authors][stdlib-authors].
|
|
|
608
638
|
|
|
609
639
|
[@stdlib/array/uint32]: https://www.npmjs.com/package/@stdlib/array-uint32
|
|
610
640
|
|
|
641
|
+
<!-- <related-links> -->
|
|
642
|
+
|
|
643
|
+
[@stdlib/random/base/laplace]: https://www.npmjs.com/package/@stdlib/random-base-laplace
|
|
644
|
+
|
|
645
|
+
[@stdlib/random/iter/laplace]: https://www.npmjs.com/package/@stdlib/random-iter-laplace
|
|
646
|
+
|
|
647
|
+
<!-- </related-links> -->
|
|
648
|
+
|
|
611
649
|
</section>
|
|
612
650
|
|
|
613
651
|
<!-- /.links -->
|
package/package.json
CHANGED