Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Aug 3, 2023
1 parent 7e406c8 commit 2e43a95
Show file tree
Hide file tree
Showing 5 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion base/gamma/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ var factory = require( './factory.js' );
*
* - Marsaglia, George, and Wai Wan Tsang. 2000. "A Simple Method for Generating Gamma Variables." _ACM Transactions on Mathematical Software_ 26 (3). New York, NY, USA: ACM: 363–72. doi:[10.1145/358407.358414](http://dx.doi.org/10.1145/358407.358414).
*
*
* @name gamma
* @type {PRNG}
* @param {PositiveNumber} alpha - shape parameter
Expand Down
2 changes: 0 additions & 2 deletions base/mt19937/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,13 @@ var randuint32 = require( './rand_uint32.js' );
*
* - As different combinations of \\( x \\) and \\( y \\) are generated, different combinations of double-precision floating-point exponent and significand bits will be toggled, thus generating pseudorandom double-precision floating-point numbers.
*
*
* ## References
*
* - Matsumoto, Makoto, and Takuji Nishimura. 1998. "Mersenne Twister: A 623-dimensionally Equidistributed Uniform Pseudo-random Number Generator." _ACM Transactions on Modeling and Computer Simulation_ 8 (1). New York, NY, USA: ACM: 3–30. doi:[10.1145/272991.272995][@matsumoto:1998a].
* - Harase, Shin. 2017. "Conversion of Mersenne Twister to double-precision floating-point numbers." _ArXiv_ abs/1708.06018 (September). <https://arxiv.org/abs/1708.06018>.
*
* [@matsumoto:1998a]: https://doi.org/10.1145/272991.272995
*
*
* @function mt19937
* @type {PRNG}
* @returns {PositiveInteger} pseudorandom integer
Expand Down
1 change: 0 additions & 1 deletion base/poisson/lib/rejection.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ var ONE_360 = 1.0 / 360.0;
*
* [@hormann:1993b]: http://dx.doi.org/10.1016/0167-6687(93)90997-4
*
*
* @private
* @param {PRNG} rand - PRNG for generating uniformly distributed numbers
* @param {PositiveNumber} lambda - mean
Expand Down
1 change: 0 additions & 1 deletion sample/lib/renormalizing.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
*
* - After each draw, the probabilities of the remaining observations are renormalized so that they sum to one.
*
*
* @private
* @param {ArrayLike} x - array-like object from which to sample
* @param {NonNegativeInteger} size - sample size
Expand Down
1 change: 0 additions & 1 deletion sample/lib/vose.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ var floor = require( '@stdlib/math/base/special/floor' );
* [alias-method]: http://keithschwarz.com/darts-dice-coins/
* [@vose:1991]: https://doi.org/10.1109/32.92917
*
*
* @private
* @param {ArrayLike} x - array-like object from which to sample
* @param {NonNegativeInteger} size - sample size
Expand Down

0 comments on commit 2e43a95

Please sign in to comment.