Skip to content

Commit 4877282

Browse files
committed
feat: add random.strided.t to namespace
1 parent b620e84 commit 4877282

File tree

27 files changed

+82
-17
lines changed

27 files changed

+82
-17
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -2581,6 +2581,7 @@ random.strided.normal,"@stdlib/random/strided/normal"
25812581
random.strided.poisson,"@stdlib/random/strided/poisson"
25822582
random.strided.randu,"@stdlib/random/strided/randu"
25832583
random.strided.rayleigh,"@stdlib/random/strided/rayleigh"
2584+
random.strided.t,"@stdlib/random/strided/t"
25842585
random.strided.uniform,"@stdlib/random/strided/uniform"
25852586
ranks,"@stdlib/stats/ranks"
25862587
readDir,"@stdlib/fs/read-dir"

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -2475,7 +2475,7 @@ random.array.pareto1,"base.random.pareto1"
24752475
random.array.poisson,"base.random.poisson,random.strided.poisson"
24762476
random.array.randu,"random.array.uniform,base.random.randu,random.strided.randu"
24772477
random.array.rayleigh,"base.random.rayleigh,random.strided.rayleigh"
2478-
random.array.t,"base.random.t"
2478+
random.array.t,"base.random.t,random.strided.t"
24792479
random.array.triangular,"base.random.triangular"
24802480
random.array.uniform,"random.array.discreteUniform,base.random.uniform,random.strided.uniform"
24812481
random.array.weibull,"base.random.weibull"
@@ -2581,6 +2581,7 @@ random.strided.normal,"base.random.normal,random.array.normal"
25812581
random.strided.poisson,"base.random.poisson,random.array.poisson"
25822582
random.strided.randu,"base.random.randu,random.array.randu,random.strided.uniform"
25832583
random.strided.rayleigh,"base.random.rayleigh,random.array.rayleigh"
2584+
random.strided.t,"base.random.t,random.array.t"
25842585
random.strided.uniform,"base.random.uniform,random.array.uniform,random.strided.discreteUniform"
25852586
ranks,""
25862587
readDir,"exists,readFile"

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
@@ -2581,6 +2581,7 @@ random.strided.normal,"@stdlib/random-strided-normal"
25812581
random.strided.poisson,"@stdlib/random-strided-poisson"
25822582
random.strided.randu,"@stdlib/random-strided-randu"
25832583
random.strided.rayleigh,"@stdlib/random-strided-rayleigh"
2584+
random.strided.t,"@stdlib/random-strided-t"
25842585
random.strided.uniform,"@stdlib/random-strided-uniform"
25852586
ranks,"@stdlib/stats-ranks"
25862587
readDir,"@stdlib/fs-read-dir"

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
@@ -2581,6 +2581,7 @@ random.strided.normal
25812581
random.strided.poisson
25822582
random.strided.randu
25832583
random.strided.rayleigh
2584+
random.strided.t
25842585
random.strided.uniform
25852586
ranks
25862587
readDir

lib/node_modules/@stdlib/namespace/lib/namespace/random/strided/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.strided.t',
278+
'path': '@stdlib/random/strided/t',
279+
'value': require( '@stdlib/random/strided/t' ),
280+
'type': 'Function',
281+
'related': [
282+
'@stdlib/random/t',
283+
'@stdlib/random/base/t',
284+
'@stdlib/random/array/t'
285+
]
286+
});
287+
276288
ns.push({
277289
'alias': 'random.strided.uniform',
278290
'path': '@stdlib/random/strided/uniform',

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

+1
Original file line numberDiff line numberDiff line change
@@ -2581,6 +2581,7 @@
25812581
"@stdlib/random/strided/poisson",random.strided.poisson
25822582
"@stdlib/random/strided/randu",random.strided.randu
25832583
"@stdlib/random/strided/rayleigh",random.strided.rayleigh
2584+
"@stdlib/random/strided/t",random.strided.t
25842585
"@stdlib/random/strided/uniform",random.strided.uniform
25852586
"@stdlib/stats/ranks",ranks
25862587
"@stdlib/fs/read-dir",readDir

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

+2-1
Original file line numberDiff line numberDiff line change
@@ -2475,7 +2475,7 @@
24752475
"@stdlib/random/array/poisson","@stdlib/random/base/poisson,@stdlib/random/strided/poisson"
24762476
"@stdlib/random/array/randu","@stdlib/random/array/uniform,@stdlib/random/base/randu,@stdlib/random/strided/randu"
24772477
"@stdlib/random/array/rayleigh","@stdlib/random/base/rayleigh,@stdlib/random/strided/rayleigh"
2478-
"@stdlib/random/array/t","@stdlib/random/base/t"
2478+
"@stdlib/random/array/t","@stdlib/random/base/t,@stdlib/random/strided/t"
24792479
"@stdlib/random/array/triangular","@stdlib/random/base/triangular"
24802480
"@stdlib/random/array/uniform","@stdlib/random/array/discrete-uniform,@stdlib/random/base/uniform,@stdlib/random/strided/uniform"
24812481
"@stdlib/random/array/weibull","@stdlib/random/base/weibull"
@@ -2581,6 +2581,7 @@
25812581
"@stdlib/random/strided/poisson","@stdlib/random/base/poisson,@stdlib/random/array/poisson"
25822582
"@stdlib/random/strided/randu","@stdlib/random/base/randu,@stdlib/random/array/randu,@stdlib/random/strided/uniform"
25832583
"@stdlib/random/strided/rayleigh","@stdlib/random/base/rayleigh,@stdlib/random/array/rayleigh"
2584+
"@stdlib/random/strided/t","@stdlib/random/base/t,@stdlib/random/array/t"
25842585
"@stdlib/random/strided/uniform","@stdlib/random/base/uniform,@stdlib/random/array/uniform,@stdlib/random/strided/discrete-uniform"
25852586
"@stdlib/stats/ranks",""
25862587
"@stdlib/fs/read-dir","@stdlib/fs/exists,@stdlib/fs/read-file"

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
@@ -2581,6 +2581,7 @@
25812581
"@stdlib/random/strided/poisson","@stdlib/random-strided-poisson"
25822582
"@stdlib/random/strided/randu","@stdlib/random-strided-randu"
25832583
"@stdlib/random/strided/rayleigh","@stdlib/random-strided-rayleigh"
2584+
"@stdlib/random/strided/t","@stdlib/random-strided-t"
25842585
"@stdlib/random/strided/uniform","@stdlib/random-strided-uniform"
25852586
"@stdlib/stats/ranks","@stdlib/stats-ranks"
25862587
"@stdlib/fs/read-dir","@stdlib/fs-read-dir"

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
@@ -2581,6 +2581,7 @@
25812581
"@stdlib/random-strided-poisson","@stdlib/random/strided/poisson"
25822582
"@stdlib/random-strided-randu","@stdlib/random/strided/randu"
25832583
"@stdlib/random-strided-rayleigh","@stdlib/random/strided/rayleigh"
2584+
"@stdlib/random-strided-t","@stdlib/random/strided/t"
25842585
"@stdlib/random-strided-uniform","@stdlib/random/strided/uniform"
25852586
"@stdlib/stats-ranks","@stdlib/stats/ranks"
25862587
"@stdlib/fs-read-dir","@stdlib/fs/read-dir"

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
@@ -4452,6 +4452,15 @@ random.strided.poisson.stateLength,"var len = random.strided.poisson.stateLength
44524452
random.strided.poisson.byteLength,"var sz = random.strided.poisson.byteLength;\n"
44534453
random.strided.randu,"var out = azeros( 5, 'generic' );\nrandom.strided.randu( out.length, out, 1 )\n"
44544454
random.strided.randu.ndarray,"var out = azeros( 5, 'generic' );\nrandom.strided.randu.ndarray( out.length, out, 1, 0 )\n"
4455+
random.strided.rayleigh,"var out = azeros( 5, 'generic' );\nrandom.strided.rayleigh( out.length, [ 2.0 ], 0, out, 1 )\n"
4456+
random.strided.rayleigh.ndarray,"var out = azeros( 5, 'generic' );\nrandom.strided.rayleigh.ndarray( out.length, [ 2.0 ], 0, 0, out, 1, 0 )\n"
4457+
random.strided.rayleigh.factory,"var fcn = random.strided.rayleigh.factory();\nvar out = azeros( 5, 'generic' );\nfcn( out.length, [ 2.0 ], 0, out, 1 )\n"
4458+
random.strided.rayleigh.PRNG,"var prng = random.strided.rayleigh.PRNG;\n"
4459+
random.strided.rayleigh.seed,"var seed = random.strided.rayleigh.seed;\n"
4460+
random.strided.rayleigh.seedLength,"var len = random.strided.rayleigh.seedLength;\n"
4461+
random.strided.rayleigh.state,"var out = azeros( 3, 'generic' );\nrandom.strided.rayleigh( out.length, [ 2.0 ], 0, out, 1 )\nvar state = random.strided.rayleigh.state\nout = azeros( 3, 'generic' );\nrandom.strided.rayleigh( out.length, [ 2.0 ], 0, out, 1 )\nout = azeros( 3, 'generic' );\nrandom.strided.rayleigh( out.length, [ 2.0 ], 0, out, 1 )\nrandom.strided.rayleigh.state = state;\nout = azeros( 3, 'generic' );\nrandom.strided.rayleigh( out.length, [ 2.0 ], 0, out, 1 )\n"
4462+
random.strided.rayleigh.stateLength,"var len = random.strided.rayleigh.stateLength;\n"
4463+
random.strided.rayleigh.byteLength,"var sz = random.strided.rayleigh.byteLength;\n"
44554464
random.strided.uniform,"var a = linspace( 0.0, 1.0, 5 );\nvar b = linspace( 2.0, 5.0, 5 );\nvar out = azeros( 5, 'generic' );\nrandom.strided.uniform( out.length, a, 1, b, 1, out, 1 )\na = linspace( 0.0, 1.0, 6 );\nb = linspace( 2.0, 5.0, 6 );\nout = azeros( 6, 'generic' );\nrandom.strided.uniform( 3, a, -2, b, 1, out, 1 )\n"
44564465
random.strided.uniform.ndarray,"var a = linspace( 0.0, 1.0, 5 );\nvar b = linspace( 2.0, 5.0, 5 );\nvar out = azeros( 5, 'generic' );\nrandom.strided.uniform.ndarray( out.length, a, 1, 0, b, 1, 0, out, 1, 0 )\na = linspace( 0.0, 1.0, 6 );\nb = linspace( 2.0, 5.0, 6 );\nout = azeros( 6, 'generic' );\nrandom.strided.uniform.ndarray( 3, a, 2, 1, b, -1, b.length-1, out, 1, 0 )\n"
44574466
ranks,"var arr = [ 1.1, 2.0, 3.5, 0.0, 2.4 ] ;\nvar out = ranks( arr )\narr = [ 2, 2, 1, 4, 3 ];\nout = ranks( arr )\narr = [ null, 2, 2, 1, 4, 3, NaN, NaN ];\nout = ranks( arr )\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)