You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/array/base/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -144,6 +144,7 @@ The namespace exports the following:
144
144
- <spanclass="signature">[`map5d( x, shape, fcn[, thisArg] )`][@stdlib/array/base/map5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a function to elements in a five-dimensional nested input array and assign results to elements in a new five-dimensional nested output array.</span>
145
145
- <spanclass="signature">[`mskbinary2d( arrays, shape, fcn )`][@stdlib/array/base/mskbinary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a binary callback to elements in two two-dimensional nested input arrays according to elements in a two-dimensional nested mask array and assign results to elements in a two-dimensional nested output array.</span>
146
146
- <spanclass="signature">[`mskfilter( x, mask )`][@stdlib/array/base/mskfilter]</span><spanclass="delimiter">: </span><spanclass="description">return a new array by applying a mask to a provided input array.</span>
147
+
- <spanclass="signature">[`mskreject( x, mask )`][@stdlib/array/base/mskreject]</span><spanclass="delimiter">: </span><spanclass="description">return a new array by applying a mask to a provided input array.</span>
147
148
- <spanclass="signature">[`mskunary2d( arrays, shape, fcn )`][@stdlib/array/base/mskunary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a two-dimensional nested input array according to elements in a two-dimensional nested mask array and assign results to elements in a two-dimensional nested output array.</span>
148
149
- <spanclass="signature">[`mskunary3d( arrays, shape, fcn )`][@stdlib/array/base/mskunary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a three-dimensional nested input array according to elements in a three-dimensional nested mask array and assign results to elements in a three-dimensional nested output array.</span>
@@ -165,6 +166,7 @@ The namespace exports the following:
165
166
- <spanclass="signature">[`quinary3d( arrays, shape, fcn )`][@stdlib/array/base/quinary3d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array.</span>
166
167
- <spanclass="signature">[`quinary4d( arrays, shape, fcn )`][@stdlib/array/base/quinary4d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array.</span>
167
168
- <spanclass="signature">[`quinary5d( arrays, shape, fcn )`][@stdlib/array/base/quinary5d]</span><spanclass="delimiter">: </span><spanclass="description">apply a quinary callback to elements in five five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array.</span>
169
+
- <spanclass="signature">[`reject( x, predicate[, thisArg] )`][@stdlib/array/base/reject]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of an array containing only those elements which fail a test implemented by a predicate function.</span>
168
170
- <spanclass="signature">[`resolveGetter( x )`][@stdlib/array/base/resolve-getter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for retrieving an element from an array-like object.</span>
169
171
- <spanclass="signature">[`resolveSetter( x )`][@stdlib/array/base/resolve-setter]</span><spanclass="delimiter">: </span><spanclass="description">return an accessor function for setting an element in an array-like object.</span>
170
172
- <spanclass="signature">[`reverse( x )`][@stdlib/array/base/reverse]</span><spanclass="delimiter">: </span><spanclass="description">reverse an array in-place.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/random/array/tools/README.md
+30Lines changed: 30 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,18 @@ The namespace contains the following:
43
43
44
44
<!-- <toc pattern="*"> -->
45
45
46
+
<divclass="namespace-toc">
47
+
48
+
- <spanclass="signature">[`binaryFactory( prng, dtypes, dtype )`][@stdlib/random/array/tools/binary-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a factory function for generating pseudorandom values drawn from a binary PRNG.</span>
49
+
- <spanclass="signature">[`binary( prng, dtypes, dtype )`][@stdlib/random/array/tools/binary]</span><spanclass="delimiter">: </span><spanclass="description">constructor for creating arrays filled with pseudorandom values drawn from a binary PRNG.</span>
50
+
- <spanclass="signature">[`nullary( prng, dtypes, dtype )`][@stdlib/random/array/tools/nullary]</span><spanclass="delimiter">: </span><spanclass="description">constructor for creating arrays filled with pseudorandom values drawn from a nullary PRNG.</span>
51
+
- <spanclass="signature">[`ternaryFactory( prng, dtypes, dtype )`][@stdlib/random/array/tools/ternary-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a factory function for generating pseudorandom values drawn from a ternary PRNG.</span>
52
+
- <spanclass="signature">[`ternary( prng, dtypes, dtype )`][@stdlib/random/array/tools/ternary]</span><spanclass="delimiter">: </span><spanclass="description">constructor for creating arrays filled with pseudorandom values drawn from a ternary PRNG.</span>
53
+
- <spanclass="signature">[`unaryFactory( prng, dtypes, dtype )`][@stdlib/random/array/tools/unary-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a factory function for generating pseudorandom values drawn from a unary PRNG.</span>
54
+
- <spanclass="signature">[`unary( prng, dtypes, dtype )`][@stdlib/random/array/tools/unary]</span><spanclass="delimiter">: </span><spanclass="description">constructor for creating arrays filled with pseudorandom values drawn from a unary PRNG.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/random/strided/README.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,19 +46,26 @@ The namespace contains the following:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`arcsine( N, a, sa, b, sb, out, so[, options] )`][@stdlib/random/strided/arcsine]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from an arcsine distribution.</span>
49
+
- <spanclass="signature">[`bernoulli( N, p, sp, out, so )`][@stdlib/random/strided/bernoulli]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a Bernoulli distribution.</span>
49
50
- <spanclass="signature">[`beta( N, alpha, sa, beta, sb, out, so[, options] )`][@stdlib/random/strided/beta]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a beta distribution.</span>
50
51
- <spanclass="signature">[`betaprime( N, alpha, sa, beta, sb, out, so[, options] )`][@stdlib/random/strided/betaprime]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a beta prime distribution.</span>
52
+
- <spanclass="signature">[`chi( N, k, sk, out, so )`][@stdlib/random/strided/chi]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a chi distribution.</span>
53
+
- <spanclass="signature">[`chisquare( N, k, sk, out, so )`][@stdlib/random/strided/chisquare]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a chi-square distribution.</span>
51
54
- <spanclass="signature">[`cosine( N, mu, sm, s, ss, out, so[, options] )`][@stdlib/random/strided/cosine]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a raised cosine distribution.</span>
52
55
- <spanclass="signature">[`discreteUniform( N, a, sa, b, sb, out, so[, options] )`][@stdlib/random/strided/discrete-uniform]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a discrete uniform distribution.</span>
53
56
- <spanclass="signature">[`exponential( N, lambda, sl, out, so )`][@stdlib/random/strided/exponential]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from an exponential distribution.</span>
54
57
- <spanclass="signature">[`gamma( N, alpha, sa, beta, sb, out, so[, options] )`][@stdlib/random/strided/gamma]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a gamma distribution.</span>
58
+
- <spanclass="signature">[`geometric( N, p, sp, out, so )`][@stdlib/random/strided/geometric]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a geometric distribution.</span>
55
59
- <spanclass="signature">[`invgamma( N, alpha, sa, beta, sb, out, so[, options] )`][@stdlib/random/strided/invgamma]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from an inverse gamma distribution.</span>
56
60
- <spanclass="signature">[`lognormal( N, mu, sm, sigma, ss, out, so[, options] )`][@stdlib/random/strided/lognormal]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a lognormal distribution.</span>
57
61
- <spanclass="signature">[`minstdShuffle( N, out, so[, options] )`][@stdlib/random/strided/minstd-shuffle]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers generated using a linear congruential pseudorandom number generator (LCG) whose output is shuffled.</span>
58
62
- <spanclass="signature">[`minstd( N, out, so[, options] )`][@stdlib/random/strided/minstd]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers generated using a linear congruential pseudorandom number generator (LCG).</span>
59
63
- <spanclass="signature">[`mt19937( N, out, so[, options] )`][@stdlib/random/strided/mt19937]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers generated using a 32-bit Mersenne Twister pseudorandom number generator.</span>
60
64
- <spanclass="signature">[`normal( N, mu, sm, sigma, ss, out, so[, options] )`][@stdlib/random/strided/normal]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a normal distribution.</span>
65
+
- <spanclass="signature">[`poisson( N, lambda, sl, out, so )`][@stdlib/random/strided/poisson]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a Poisson distribution.</span>
61
66
- <spanclass="signature">[`randu( N, out, so[, options] )`][@stdlib/random/strided/randu]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with uniformly distributed pseudorandom numbers between `0` and `1`.</span>
67
+
- <spanclass="signature">[`rayleigh( N, sigma, ss, out, so )`][@stdlib/random/strided/rayleigh]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a Rayleigh distribution.</span>
68
+
- <spanclass="signature">[`t( N, v, sv, out, so )`][@stdlib/random/strided/t]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a Student's t-distribution.</span>
62
69
- <spanclass="signature">[`uniform( N, a, sa, b, sb, out, so[, options] )`][@stdlib/random/strided/uniform]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a continuous uniform distribution.</span>
63
70
- <spanclass="signature">[`weibull( N, k, sk, lambda, sl, out, so[, options] )`][@stdlib/random/strided/weibull]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with pseudorandom numbers drawn from a Weibull distribution.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/random/strided/tools/README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,14 @@ The namespace contains the following:
43
43
44
44
<!-- <toc pattern="*"> -->
45
45
46
+
<divclass="namespace-toc">
47
+
48
+
- <spanclass="signature">[`binaryFactory( prng )`][@stdlib/random/strided/tools/binary-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a factory function for filling strided arrays with pseudorandom values drawn from a binary PRNG.</span>
49
+
- <spanclass="signature">[`ternaryFactory( prng )`][@stdlib/random/strided/tools/ternary-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a factory function for filling strided arrays with pseudorandom values drawn from a ternary PRNG.</span>
50
+
- <spanclass="signature">[`unaryFactory( prng )`][@stdlib/random/strided/tools/unary-factory]</span><spanclass="delimiter">: </span><spanclass="description">create a factory function for filling strided arrays with pseudorandom values drawn from a unary PRNG.</span>
0 commit comments