Skip to content

Commit 117502a

Browse files
committed
Update namespace
1 parent 0537b02 commit 117502a

File tree

3 files changed

+17
-4
lines changed
  • lib/node_modules/@stdlib

3 files changed

+17
-4
lines changed

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5486,6 +5486,17 @@ ns.push({
54865486
]
54875487
});
54885488

5489+
ns.push({
5490+
'alias': 'base.logaddexp',
5491+
'path': '@stdlib/math/base/special/logaddexp',
5492+
'value': require( '@stdlib/math/base/special/logaddexp' ),
5493+
'type': 'Function',
5494+
'related': [
5495+
'@stdlib/math/base/special/exp',
5496+
'@stdlib/math/base/special/ln'
5497+
]
5498+
});
5499+
54895500
ns.push({
54905501
'alias': 'base.logit',
54915502
'path': '@stdlib/math/base/special/logit',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -667,6 +667,7 @@ var db = {
667667
"base.log1pexp": "y = base.log1pexp( -10.0 )\ny = base.log1pexp( 0.0 )\ny = base.log1pexp( 5.0 )\ny = base.log1pexp( 34.0 )\ny = base.log1pexp( NaN )\n",
668668
"base.log2": "y = base.log2( 4.0 )\ny = base.log2( 8.0 )\ny = base.log2( 0.0 )\ny = base.log2( PINF )\ny = base.log2( NaN )\ny = base.log2( -4.0 )\n",
669669
"base.log10": "y = base.log10( 100.0 )\ny = base.log10( 8.0 )\ny = base.log10( 0.0 )\ny = base.log10( PINF )\ny = base.log10( NaN )\ny = base.log10( -4.0 )\n",
670+
"base.logaddexp": "v = base.logaddexp( 90.0, 90.0 )\nv = base.logaddexp( -20.0, 90.0 )\nv = base.logaddexp( 0.0, -100.0 )\nv = base.logaddexp( NaN, NaN )\n",
670671
"base.logit": "y = base.logit( 0.2 )\ny = base.logit( 0.9 )\ny = base.logit( -4.0 )\ny = base.logit( 1.5 )\ny = base.logit( NaN )\n",
671672
"base.lucas": "y = base.lucas( 0 )\ny = base.lucas( 1 )\ny = base.lucas( 2 )\ny = base.lucas( 3 )\ny = base.lucas( 4 )\ny = base.lucas( 77 )\ny = base.lucas( NaN )\n",
672673
"base.lucaspoly": "\n// 2^5 + 5*2^3 + 5*2\nv = base.lucaspoly( 5, 2.0 )\n",

0 commit comments

Comments
 (0)