File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -5338,6 +5338,14 @@ ns.push({
5338
5338
'related' : [ ]
5339
5339
} ) ;
5340
5340
5341
+ ns . push ( {
5342
+ 'alias' : 'base.random.discreteUniform' ,
5343
+ 'path' : '@stdlib/math/base/random/discrete-uniform' ,
5344
+ 'value' : require ( '@stdlib/math/base/random/discrete-uniform' ) ,
5345
+ 'type' : 'Function' ,
5346
+ 'related' : [ ]
5347
+ } ) ;
5348
+
5341
5349
ns . push ( {
5342
5350
'alias' : 'base.random.erlang' ,
5343
5351
'path' : '@stdlib/math/base/random/erlang' ,
Original file line number Diff line number Diff line change @@ -613,6 +613,7 @@ module.exports = {
613
613
"base.random.chi" : "r = base.random.chi( 2 );\n" ,
614
614
"base.random.chisquare" : "r = base.random.chisquare( 2 );\n" ,
615
615
"base.random.cosine" : "r = base.random.cosine( 2.0, 5.0 );\n" ,
616
+ "base.random.discreteUniform" : "r = base.random.discreteUniform( 2, 50 );\n" ,
616
617
"base.random.erlang" : "r = base.random.erlang( 2, 5.0 );\n" ,
617
618
"base.random.exponential" : "r = base.random.exponential( 7.9 );\n" ,
618
619
"base.random.f" : "r = base.random.f( 2.0, 5.0 );\n" ,
You can’t perform that action at this time.
0 commit comments