Skip to content

Commit 3107668

Browse files
committed
feat: add random.array.t to namespace
1 parent 9c7c048 commit 3107668

File tree

27 files changed

+78
-13
lines changed

27 files changed

+78
-13
lines changed

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@ random.array.normal,"@stdlib/random/array/normal"
24402440
random.array.poisson,"@stdlib/random/array/poisson"
24412441
random.array.randu,"@stdlib/random/array/randu"
24422442
random.array.rayleigh,"@stdlib/random/array/rayleigh"
2443+
random.array.t,"@stdlib/random/array/t"
24432444
random.array.uniform,"@stdlib/random/array/uniform"
24442445
random.iterators.arcsine,"@stdlib/random/iter/arcsine"
24452446
random.iterators.bernoulli,"@stdlib/random/iter/bernoulli"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2related/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@ random.array.normal,"base.random.normal,random.strided.normal"
24402440
random.array.poisson,"base.random.poisson"
24412441
random.array.randu,"random.array.uniform,base.random.randu,random.strided.randu"
24422442
random.array.rayleigh,"base.random.rayleigh"
2443+
random.array.t,"base.random.t"
24432444
random.array.uniform,"random.array.discreteUniform,base.random.uniform,random.strided.uniform"
24442445
random.iterators.arcsine,"base.random.arcsine"
24452446
random.iterators.bernoulli,"base.random.bernoulli"

lib/node_modules/@stdlib/namespace/alias2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@ random.array.normal,"@stdlib/random-array-normal"
24402440
random.array.poisson,"@stdlib/random-array-poisson"
24412441
random.array.randu,"@stdlib/random-array-randu"
24422442
random.array.rayleigh,"@stdlib/random-array-rayleigh"
2443+
random.array.t,"@stdlib/random-array-t"
24432444
random.array.uniform,"@stdlib/random-array-uniform"
24442445
random.iterators.arcsine,"@stdlib/random-iter-arcsine"
24452446
random.iterators.bernoulli,"@stdlib/random-iter-bernoulli"

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.txt

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@ random.array.normal
24402440
random.array.poisson
24412441
random.array.randu
24422442
random.array.rayleigh
2443+
random.array.t
24432444
random.array.uniform
24442445
random.iterators.arcsine
24452446
random.iterators.bernoulli

lib/node_modules/@stdlib/namespace/lib/namespace/random/array/index.js

+12
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,18 @@ ns.push({
273273
]
274274
});
275275

276+
ns.push({
277+
'alias': 'random.array.t',
278+
'path': '@stdlib/random/array/t',
279+
'value': require( '@stdlib/random/array/t' ),
280+
'type': 'Function',
281+
'related': [
282+
'@stdlib/random/base/t',
283+
'@stdlib/random/strided/t',
284+
'@stdlib/random/t'
285+
]
286+
});
287+
276288
ns.push({
277289
'alias': 'random.array.uniform',
278290
'path': '@stdlib/random/array/uniform',

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@
24402440
"@stdlib/random/array/poisson",random.array.poisson
24412441
"@stdlib/random/array/randu",random.array.randu
24422442
"@stdlib/random/array/rayleigh",random.array.rayleigh
2443+
"@stdlib/random/array/t",random.array.t
24432444
"@stdlib/random/array/uniform",random.array.uniform
24442445
"@stdlib/random/iter/arcsine",random.iterators.arcsine
24452446
"@stdlib/random/iter/bernoulli",random.iterators.bernoulli

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2related/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@
24402440
"@stdlib/random/array/poisson","@stdlib/random/base/poisson"
24412441
"@stdlib/random/array/randu","@stdlib/random/array/uniform,@stdlib/random/base/randu,@stdlib/random/strided/randu"
24422442
"@stdlib/random/array/rayleigh","@stdlib/random/base/rayleigh"
2443+
"@stdlib/random/array/t","@stdlib/random/base/t"
24432444
"@stdlib/random/array/uniform","@stdlib/random/array/discrete-uniform,@stdlib/random/base/uniform,@stdlib/random/strided/uniform"
24442445
"@stdlib/random/iter/arcsine","@stdlib/random/base/arcsine"
24452446
"@stdlib/random/iter/bernoulli","@stdlib/random/base/bernoulli"

lib/node_modules/@stdlib/namespace/pkg2related/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@
24402440
"@stdlib/random/array/poisson","@stdlib/random-array-poisson"
24412441
"@stdlib/random/array/randu","@stdlib/random-array-randu"
24422442
"@stdlib/random/array/rayleigh","@stdlib/random-array-rayleigh"
2443+
"@stdlib/random/array/t","@stdlib/random-array-t"
24432444
"@stdlib/random/array/uniform","@stdlib/random-array-uniform"
24442445
"@stdlib/random/iter/arcsine","@stdlib/random-iter-arcsine"
24452446
"@stdlib/random/iter/bernoulli","@stdlib/random-iter-bernoulli"

lib/node_modules/@stdlib/namespace/pkg2standalone/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2440,6 +2440,7 @@
24402440
"@stdlib/random-array-poisson","@stdlib/random/array/poisson"
24412441
"@stdlib/random-array-randu","@stdlib/random/array/randu"
24422442
"@stdlib/random-array-rayleigh","@stdlib/random/array/rayleigh"
2443+
"@stdlib/random-array-t","@stdlib/random/array/t"
24432444
"@stdlib/random-array-uniform","@stdlib/random/array/uniform"
24442445
"@stdlib/random-iter-arcsine","@stdlib/random/iter/arcsine"
24452446
"@stdlib/random-iter-bernoulli","@stdlib/random/iter/bernoulli"

lib/node_modules/@stdlib/namespace/standalone2pkg/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

+9
Original file line numberDiff line numberDiff line change
@@ -3890,6 +3890,15 @@ random.array.chi.seedLength,"var len = random.array.chi.seedLength;\n"
38903890
random.array.chi.state,"var out = random.array.chi( 3, 2.0 )\nvar state = random.array.chi.state\nout = random.array.chi( 3, 2.0 )\nout = random.array.chi( 3, 2.0 )\nrandom.array.chi.state = state;\nout = random.array.chi( 3, 2.0 )\n"
38913891
random.array.chi.stateLength,"var len = random.array.chi.stateLength;\n"
38923892
random.array.chi.byteLength,"var sz = random.array.chi.byteLength;\n"
3893+
random.array.chisquare,"var out = random.array.chisquare( 3, 2.0 )\n"
3894+
random.array.chisquare.assign,"var x = azeros( 3, 'float64' );\nvar out = random.array.chisquare.assign( 2.0, x )\nvar bool = ( out === x )\n"
3895+
random.array.chisquare.factory,"var fcn = random.array.chisquare.factory();\nvar out = fcn( 3, 2.0 )\nfcn = random.array.chisquare.factory( 2.0 );\nout = fcn( 3 )\n"
3896+
random.array.chisquare.PRNG,"var prng = random.array.chisquare.PRNG;\n"
3897+
random.array.chisquare.seed,"var seed = random.array.chisquare.seed;\n"
3898+
random.array.chisquare.seedLength,"var len = random.array.chisquare.seedLength;\n"
3899+
random.array.chisquare.state,"var out = random.array.chisquare( 3, 2.0 )\nvar state = random.array.chisquare.state\nout = random.array.chisquare( 3, 2.0 )\nout = random.array.chisquare( 3, 2.0 )\nrandom.array.chisquare.state = state;\nout = random.array.chisquare( 3, 2.0 )\n"
3900+
random.array.chisquare.stateLength,"var len = random.array.chisquare.stateLength;\n"
3901+
random.array.chisquare.byteLength,"var sz = random.array.chisquare.byteLength;\n"
38933902
random.array.cosine,"var out = random.array.cosine( 3, 2.0, 5.0 )\n"
38943903
random.array.cosine.factory,"var fcn = random.array.cosine.factory();\nvar out = fcn( 3, 2.0, 5.0 )\nfcn = random.array.cosine.factory( 2.0, 5.0 );\nout = fcn( 3 )\n"
38953904
random.array.cosine.PRNG,"var prng = random.array.cosine.PRNG;\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)