Skip to content

Commit a75f17e

Browse files
committed
feat: add random.strided.chisquare to namespace
1 parent 6c681e9 commit a75f17e

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2566,6 +2566,7 @@ random.strided.bernoulli,"@stdlib/random/strided/bernoulli"
25662566
random.strided.beta,"@stdlib/random/strided/beta"
25672567
random.strided.betaprime,"@stdlib/random/strided/betaprime"
25682568
random.strided.chi,"@stdlib/random/strided/chi"
2569+
random.strided.chisquare,"@stdlib/random/strided/chisquare"
25692570
random.strided.cosine,"@stdlib/random/strided/cosine"
25702571
random.strided.discreteUniform,"@stdlib/random/strided/discrete-uniform"
25712572
random.strided.exponential,"@stdlib/random/strided/exponential"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2449,7 +2449,7 @@ random.array.betaprime,"base.random.betaprime,random.strided.betaprime"
24492449
random.array.binomial,"random.array.negativeBinomial,base.random.binomial"
24502450
random.array.cauchy,"base.random.cauchy"
24512451
random.array.chi,"base.random.chi,random.strided.chi"
2452-
random.array.chisquare,"base.random.chisquare"
2452+
random.array.chisquare,"base.random.chisquare,random.strided.chisquare"
24532453
random.array.cosine,"base.random.cosine,random.strided.cosine"
24542454
random.array.discreteUniform,"random.array.uniform,base.random.discreteUniform,random.strided.discreteUniform"
24552455
random.array.erlang,"base.random.erlang"
@@ -2566,6 +2566,7 @@ random.strided.bernoulli,"base.random.bernoulli,random.array.bernoulli"
25662566
random.strided.beta,"base.random.beta,random.array.beta"
25672567
random.strided.betaprime,"base.random.betaprime,random.array.betaprime"
25682568
random.strided.chi,"base.random.chi,random.array.chi"
2569+
random.strided.chisquare,"base.random.chisquare,random.array.chisquare"
25692570
random.strided.cosine,"base.random.cosine,random.array.cosine"
25702571
random.strided.discreteUniform,"base.random.discreteUniform,random.array.discreteUniform,random.strided.uniform"
25712572
random.strided.exponential,"base.random.exponential,random.array.exponential"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2566,6 +2566,7 @@ random.strided.bernoulli,"@stdlib/random-strided-bernoulli"
25662566
random.strided.beta,"@stdlib/random-strided-beta"
25672567
random.strided.betaprime,"@stdlib/random-strided-betaprime"
25682568
random.strided.chi,"@stdlib/random-strided-chi"
2569+
random.strided.chisquare,"@stdlib/random-strided-chisquare"
25692570
random.strided.cosine,"@stdlib/random-strided-cosine"
25702571
random.strided.discreteUniform,"@stdlib/random-strided-discrete-uniform"
25712572
random.strided.exponential,"@stdlib/random-strided-exponential"

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2566,6 +2566,7 @@ random.strided.bernoulli
25662566
random.strided.beta
25672567
random.strided.betaprime
25682568
random.strided.chi
2569+
random.strided.chisquare
25692570
random.strided.cosine
25702571
random.strided.discreteUniform
25712572
random.strided.exponential

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,18 @@ ns.push({
8686
]
8787
});
8888

89+
ns.push({
90+
'alias': 'random.strided.chisquare',
91+
'path': '@stdlib/random/strided/chisquare',
92+
'value': require( '@stdlib/random/strided/chisquare' ),
93+
'type': 'Function',
94+
'related': [
95+
'@stdlib/random/chisquare',
96+
'@stdlib/random/base/chisquare',
97+
'@stdlib/random/array/chisquare'
98+
]
99+
});
100+
89101
ns.push({
90102
'alias': 'random.strided.cosine',
91103
'path': '@stdlib/random/strided/cosine',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2566,6 +2566,7 @@
25662566
"@stdlib/random/strided/beta",random.strided.beta
25672567
"@stdlib/random/strided/betaprime",random.strided.betaprime
25682568
"@stdlib/random/strided/chi",random.strided.chi
2569+
"@stdlib/random/strided/chisquare",random.strided.chisquare
25692570
"@stdlib/random/strided/cosine",random.strided.cosine
25702571
"@stdlib/random/strided/discrete-uniform",random.strided.discreteUniform
25712572
"@stdlib/random/strided/exponential",random.strided.exponential

0 commit comments

Comments
 (0)