Skip to content

Commit 2011799

Browse files
committed
Update namespace
1 parent 4360c73 commit 2011799

3 files changed

Lines changed: 19 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib

lib/node_modules/@stdlib/namespace/lib/namespace/r.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -543,6 +543,19 @@ ns.push({
543543
]
544544
});
545545

546+
ns.push({
547+
'alias': 'random.streams.randn',
548+
'path': '@stdlib/random/streams/randn',
549+
'value': require( '@stdlib/random/streams/randn' ),
550+
'type': 'Function',
551+
'related': [
552+
'@stdlib/random/base/randn',
553+
'@stdlib/random/iterators/randn',
554+
'@stdlib/random/streams/box-muller',
555+
'@stdlib/random/streams/improved-ziggurat'
556+
]
557+
});
558+
546559
ns.push({
547560
'alias': 'random.streams.randu',
548561
'path': '@stdlib/random/streams/randu',

lib/node_modules/@stdlib/repl/code-blocks/lib/db.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1531,6 +1531,7 @@ var db = {
15311531
"random.streams.minstdShuffle": "function fcn( chunk ) { console.log( chunk.toString() ); };\nopts = { 'iter': 10 };\ns = random.streams.minstdShuffle( opts );\no = inspectStream( fcn );\ns.pipe( o );\n",
15321532
"random.streams.mt19937": "function fcn( chunk ) { console.log( chunk.toString() ); };\nopts = { 'iter': 10 };\ns = random.streams.mt19937( opts );\no = inspectStream( fcn );\ns.pipe( o );\n",
15331533
"random.streams.randi": "function fcn( chunk ) { console.log( chunk.toString() ); };\nopts = { 'iter': 10 };\ns = random.streams.randi( opts );\no = inspectStream( fcn );\ns.pipe( o );\n",
1534+
"random.streams.randn": "function fcn( chunk ) { console.log( chunk.toString() ); };\nopts = { 'iter': 10 };\ns = random.streams.randn( opts );\no = inspectStream( fcn );\ns.pipe( o );\n",
15341535
"random.streams.randu": "function fcn( chunk ) { console.log( chunk.toString() ); };\nopts = { 'iter': 10 };\ns = random.streams.randu( opts );\no = inspectStream( fcn );\ns.pipe( o );\n",
15351536
"ranks": "arr = [ 1.1, 2.0, 3.5, 0.0, 2.4 ] ;\nout = ranks( arr )\n\n// Ties are averaged:\narr = [ 2, 2, 1, 4, 3 ];\nout = ranks( arr )\n\n// Missing values are placed last:\narr = [ null, 2, 2, 1, 4, 3, NaN, NaN ];\nout = ranks( arr )\n",
15361537
"RE_BASENAME": "base = RE_BASENAME.exec( '/foo/bar/index.js' )[ 1 ]\n",

0 commit comments

Comments
 (0)