Skip to content

Commit 383a569

Browse files
committed
feat: add random.strided.geometric to namespace
1 parent f0038c4 commit 383a569

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
@@ -2571,6 +2571,7 @@ random.strided.cosine,"@stdlib/random/strided/cosine"
25712571
random.strided.discreteUniform,"@stdlib/random/strided/discrete-uniform"
25722572
random.strided.exponential,"@stdlib/random/strided/exponential"
25732573
random.strided.gamma,"@stdlib/random/strided/gamma"
2574+
random.strided.geometric,"@stdlib/random/strided/geometric"
25742575
random.strided.invgamma,"@stdlib/random/strided/invgamma"
25752576
random.strided.lognormal,"@stdlib/random/strided/lognormal"
25762577
random.strided.minstd,"@stdlib/random/strided/minstd"

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
@@ -2457,7 +2457,7 @@ random.array.exponential,"base.random.exponential,random.strided.exponential"
24572457
random.array.f,"base.random.f"
24582458
random.array.frechet,"base.random.frechet"
24592459
random.array.gamma,"base.random.gamma,random.strided.gamma"
2460-
random.array.geometric,"base.random.geometric"
2460+
random.array.geometric,"base.random.geometric,random.strided.geometric"
24612461
random.array.gumbel,"base.random.gumbel"
24622462
random.array.hypergeometric,"base.random.hypergeometric"
24632463
random.array.invgamma,"base.random.invgamma,random.strided.invgamma"
@@ -2571,6 +2571,7 @@ random.strided.cosine,"base.random.cosine,random.array.cosine"
25712571
random.strided.discreteUniform,"base.random.discreteUniform,random.array.discreteUniform,random.strided.uniform"
25722572
random.strided.exponential,"base.random.exponential,random.array.exponential"
25732573
random.strided.gamma,"base.random.gamma,random.array.gamma"
2574+
random.strided.geometric,"base.random.geometric,random.array.geometric"
25742575
random.strided.invgamma,"base.random.invgamma,random.array.invgamma"
25752576
random.strided.lognormal,"base.random.lognormal,random.array.lognormal"
25762577
random.strided.minstd,"base.random.minstd,random.array.minstd,random.strided.minstdShuffle,random.strided.randu"

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
@@ -2571,6 +2571,7 @@ random.strided.cosine,"@stdlib/random-strided-cosine"
25712571
random.strided.discreteUniform,"@stdlib/random-strided-discrete-uniform"
25722572
random.strided.exponential,"@stdlib/random-strided-exponential"
25732573
random.strided.gamma,"@stdlib/random-strided-gamma"
2574+
random.strided.geometric,"@stdlib/random-strided-geometric"
25742575
random.strided.invgamma,"@stdlib/random-strided-invgamma"
25752576
random.strided.lognormal,"@stdlib/random-strided-lognormal"
25762577
random.strided.minstd,"@stdlib/random-strided-minstd"

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
@@ -2571,6 +2571,7 @@ random.strided.cosine
25712571
random.strided.discreteUniform
25722572
random.strided.exponential
25732573
random.strided.gamma
2574+
random.strided.geometric
25742575
random.strided.invgamma
25752576
random.strided.lognormal
25762577
random.strided.minstd

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
@@ -147,6 +147,18 @@ ns.push({
147147
]
148148
});
149149

150+
ns.push({
151+
'alias': 'random.strided.geometric',
152+
'path': '@stdlib/random/strided/geometric',
153+
'value': require( '@stdlib/random/strided/geometric' ),
154+
'type': 'Function',
155+
'related': [
156+
'@stdlib/random/geometric',
157+
'@stdlib/random/base/geometric',
158+
'@stdlib/random/array/geometric'
159+
]
160+
});
161+
150162
ns.push({
151163
'alias': 'random.strided.invgamma',
152164
'path': '@stdlib/random/strided/invgamma',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2571,6 +2571,7 @@
25712571
"@stdlib/random/strided/discrete-uniform",random.strided.discreteUniform
25722572
"@stdlib/random/strided/exponential",random.strided.exponential
25732573
"@stdlib/random/strided/gamma",random.strided.gamma
2574+
"@stdlib/random/strided/geometric",random.strided.geometric
25742575
"@stdlib/random/strided/invgamma",random.strided.invgamma
25752576
"@stdlib/random/strided/lognormal",random.strided.lognormal
25762577
"@stdlib/random/strided/minstd",random.strided.minstd

0 commit comments

Comments
 (0)