Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/stdlib-js/stdlib into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
kgryte committed Aug 20, 2024
2 parents 4cbb885 + a44a0c7 commit b877636
Show file tree
Hide file tree
Showing 6 changed files with 48 additions and 48 deletions.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ var fcns = special;
- <span class="signature">[`expm1rel( x )`][@stdlib/math/base/special/expm1rel]</span><span class="delimiter">: </span><span class="description">compute the relative error exponential.</span>
- <span class="signature">[`kernelLog1p( f )`][@stdlib/math/base/special/kernel-log1p]</span><span class="delimiter">: </span><span class="description">compute `log(1+f) - f` for `1+f` in `~[sqrt(2)/2, sqrt(2)]`.</span>
- <span class="signature">[`ln( x )`][@stdlib/math/base/special/ln]</span><span class="delimiter">: </span><span class="description">evaluate the natural logarithm of a double-precision floating-point number.</span>
- <span class="signature">[`log( x, b )`][@stdlib/math/base/special/log]</span><span class="delimiter">: </span><span class="description">compute the base `b` logarithm.</span>
- <span class="signature">[`log( x, b )`][@stdlib/math/base/special/log]</span><span class="delimiter">: </span><span class="description">compute the base `b` logarithm of a double-precision floating-point number.</span>
- <span class="signature">[`log10( x )`][@stdlib/math/base/special/log10]</span><span class="delimiter">: </span><span class="description">evaluate the common logarithm.</span>
- <span class="signature">[`log1mexp( x )`][@stdlib/math/base/special/log1mexp]</span><span class="delimiter">: </span><span class="description">evaluates the natural logarithm of `1-exp(-|x|)`.</span>
- <span class="signature">[`log1p( x )`][@stdlib/math/base/special/log1p]</span><span class="delimiter">: </span><span class="description">evaluate the natural logarithm of `1+x`.</span>
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ base.ldexp,"\nbase.ldexp( frac, exp )\n Multiplies a double-precision floatin
base.leftPad,"\nbase.leftPad( str, len, pad )\n Left pads a string such that the padded string has a length of at least\n `len`.\n\n An output string is not guaranteed to have a length of exactly `len`, but to\n have a length of at least `len`. To generate a padded string having a length\n equal to `len`, post-process a padded string by trimming off excess\n characters.\n\n Parameters\n ----------\n str: string\n Input string.\n\n len: integer\n Minimum string length.\n\n pad: string\n String used to pad.\n\n Returns\n -------\n out: string\n Padded string.\n\n Examples\n --------\n > var out = base.leftPad( 'a', 5, ' ' )\n ' a'\n > out = base.leftPad( 'beep', 10, 'b' )\n 'bbbbbbbeep'\n > out = base.leftPad( 'boop', 12, 'beep' )\n 'beepbeepboop'\n\n See Also\n --------\n base.rightPad\n"
base.leftTrim,"\nbase.leftTrim( str )\n Trims whitespace from the beginning of a string.\n\n \"Whitespace\" is defined as the following characters:\n\n - \f\n - \n\n - \r\n - \t\n - \v\n - \u0020\n - \u00a0\n - \u1680\n - \u2000-\u200a\n - \u2028\n - \u2029\n - \u202f\n - \u205f\n - \u3000\n - \ufeff\n\n Parameters\n ----------\n str: string\n Input string.\n\n Returns\n -------\n out: string\n Trimmed string.\n\n Examples\n --------\n > var out = base.leftTrim( ' \r\n\t Beep \t\t\n ' )\n 'Beep \t\t\n '\n\n See Also\n --------\n base.rightTrim, base.trim\n"
base.ln,"\nbase.ln( x )\n Evaluates the natural logarithm of a double-precision floating-point number.\n\n For negative numbers, the natural logarithm is not defined.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.ln( 4.0 )\n ~1.386\n > y = base.ln( 0.0 )\n -Infinity\n > y = base.ln( PINF )\n Infinity\n > y = base.ln( NaN )\n NaN\n > y = base.ln( -4.0 )\n NaN\n\n See Also\n --------\n base.exp, base.log10, base.log1p, base.log2\n"
base.log,"\nbase.log( x, b )\n Computes the base `b` logarithm of `x`.\n\n For negative `b` or `x`, the function returns `NaN`.\n\n Parameters\n ----------\n x: number\n Input value.\n\n b: number\n Base.\n\n Returns\n -------\n y: number\n Logarithm (base `b`).\n\n Examples\n --------\n > var y = base.log( 100.0, 10.0 )\n 2.0\n > y = base.log( 16.0, 2.0 )\n 4.0\n > y = base.log( 5.0, 1.0 )\n Infinity\n > y = base.log( NaN, 2.0 )\n NaN\n > y = base.log( 1.0, NaN )\n NaN\n > y = base.log( -4.0, 2.0 )\n NaN\n > y = base.log( 4.0, -2.0 )\n NaN\n\n See Also\n --------\n base.exp, base.ln, base.log10, base.log1p, base.log2\n"
base.log,"\nbase.log( x, b )\n Computes the base `b` logarithm of a double-precision floating-point number.\n\n For negative `b` or `x`, the function returns `NaN`.\n\n Parameters\n ----------\n x: number\n Input value.\n\n b: number\n Base.\n\n Returns\n -------\n y: number\n Logarithm (base `b`).\n\n Examples\n --------\n > var y = base.log( 100.0, 10.0 )\n 2.0\n > y = base.log( 16.0, 2.0 )\n 4.0\n > y = base.log( 5.0, 1.0 )\n Infinity\n > y = base.log( NaN, 2.0 )\n NaN\n > y = base.log( 1.0, NaN )\n NaN\n > y = base.log( -4.0, 2.0 )\n NaN\n > y = base.log( 4.0, -2.0 )\n NaN\n\n See Also\n --------\n base.exp, base.ln, base.log10, base.log1p, base.log2\n"
base.log1mexp,"\nbase.log1mexp( x )\n Evaluates the natural logarithm of `1-exp(-|x|)`.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.log1mexp( -10.0 )\n ~-0.00005\n > y = base.log1mexp( 0.0 )\n -Infinity\n > y = base.log1mexp( 5.0 )\n ~-0.00676\n > y = base.log1mexp( 10.0 )\n ~-0.00005\n > y = base.log1mexp( NaN )\n NaN\n\n See Also\n --------\n base.exp, base.ln, base.log1p, base.log1pexp"
base.log1p,"\nbase.log1p( x )\n Evaluates the natural logarithm of `1+x`.\n\n For `x < -1`, the function returns `NaN`, as the natural logarithm is not\n defined for negative numbers.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.log1p( 4.0 )\n ~1.609\n > y = base.log1p( -1.0 )\n -Infinity\n > y = base.log1p( 0.0 )\n 0.0\n > y = base.log1p( -0.0 )\n -0.0\n > y = base.log1p( -2.0 )\n NaN\n > y = base.log1p( NaN )\n NaN\n\n See Also\n --------\n base.ln, base.log\n"
base.log1pexp,"\nbase.log1pexp( x )\n Evaluates the natural logarithm of `1+exp(x)`.\n\n Parameters\n ----------\n x: number\n Input value.\n\n Returns\n -------\n y: number\n Function value.\n\n Examples\n --------\n > var y = base.log1pexp( -10.0 )\n ~0.000045\n > y = base.log1pexp( 0.0 )\n ~0.693147\n > y = base.log1pexp( 5.0 )\n ~5.006715\n > y = base.log1pexp( 34.0 )\n 34.0\n > y = base.log1pexp( NaN )\n NaN\n\n See Also\n --------\n base.exp, base.ln, base.log1mexp, base.log1p"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -1090,7 +1090,7 @@ base.ldexp,"\nbase.ldexp( frac:number, exp:number )\n Multiplies a double-pre
base.leftPad,"\nbase.leftPad( str:string, len:integer, pad:string )\n Left pads a string such that the padded string has a length of at least\n `len`.\n"
base.leftTrim,"\nbase.leftTrim( str:string )\n Trims whitespace from the beginning of a string.\n"
base.ln,"\nbase.ln( x:number )\n Evaluates the natural logarithm of a double-precision floating-point number.\n"
base.log,"\nbase.log( x:number, b:number )\n Computes the base `b` logarithm of `x`.\n"
base.log,"\nbase.log( x:number, b:number )\n Computes the base `b` logarithm of a double-precision floating-point number.\n"
base.log1mexp,"\nbase.log1mexp( x:number )\n Evaluates the natural logarithm of `1-exp(-|x|)`.\n"
base.log1p,"\nbase.log1p( x:number )\n Evaluates the natural logarithm of `1+x`.\n"
base.log1pexp,"\nbase.log1pexp( x:number )\n Evaluates the natural logarithm of `1+exp(x)`.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.json

Large diffs are not rendered by default.

86 changes: 43 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@stdlib/stdlib",
"version": "0.2.0",
"version": "0.3.0",
"description": "Standard library.",
"license": "Apache-2.0 AND BSL-1.0",
"author": {
Expand Down Expand Up @@ -53,48 +53,48 @@
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/array": "^0.2.1",
"@stdlib/assert": "^0.2.1",
"@stdlib/bench": "^0.3.1",
"@stdlib/bigint": "^0.2.1",
"@stdlib/blas": "^0.2.1",
"@stdlib/boolean": "^0.2.1",
"@stdlib/buffer": "^0.2.1",
"@stdlib/cli": "^0.2.1",
"@stdlib/complex": "^0.2.1",
"@stdlib/console": "^0.2.1",
"@stdlib/constants": "^0.2.1",
"@stdlib/datasets": "^0.2.0",
"@stdlib/error": "^0.2.1",
"@stdlib/fs": "^0.2.1",
"@stdlib/function": "^0.2.1",
"@stdlib/iter": "^0.2.1",
"@stdlib/math": "^0.2.1",
"@stdlib/ml": "^0.2.1",
"@stdlib/namespace": "^0.2.1",
"@stdlib/napi": "^0.2.1",
"@stdlib/ndarray": "^0.2.1",
"@stdlib/net": "^0.2.1",
"@stdlib/nlp": "^0.2.1",
"@stdlib/number": "^0.2.1",
"@stdlib/object": "^0.2.1",
"@stdlib/os": "^0.2.1",
"@stdlib/plot": "^0.2.1",
"@stdlib/process": "^0.2.1",
"@stdlib/proxy": "^0.2.1",
"@stdlib/random": "^0.2.1",
"@stdlib/regexp": "^0.2.1",
"@stdlib/repl": "^0.2.1",
"@stdlib/simulate": "^0.2.1",
"@stdlib/slice": "^0.2.1",
"@stdlib/stats": "^0.2.1",
"@stdlib/streams": "^0.2.1",
"@stdlib/strided": "^0.2.1",
"@stdlib/string": "^0.2.1",
"@stdlib/symbol": "^0.2.1",
"@stdlib/time": "^0.2.1",
"@stdlib/types": "^0.3.1",
"@stdlib/utils": "^0.2.1",
"@stdlib/array": "^0.3.1",
"@stdlib/assert": "^0.3.1",
"@stdlib/bench": "^0.4.1",
"@stdlib/bigint": "^0.3.1",
"@stdlib/blas": "^0.3.1",
"@stdlib/boolean": "^0.3.1",
"@stdlib/buffer": "^0.3.1",
"@stdlib/cli": "^0.3.1",
"@stdlib/complex": "^0.3.1",
"@stdlib/console": "^0.3.1",
"@stdlib/constants": "^0.3.1",
"@stdlib/datasets": "^0.3.0",
"@stdlib/error": "^0.3.1",
"@stdlib/fs": "^0.3.1",
"@stdlib/function": "^0.3.1",
"@stdlib/iter": "^0.3.1",
"@stdlib/math": "^0.3.1",
"@stdlib/ml": "^0.3.1",
"@stdlib/namespace": "^0.3.1",
"@stdlib/napi": "^0.3.1",
"@stdlib/ndarray": "^0.3.1",
"@stdlib/net": "^0.3.1",
"@stdlib/nlp": "^0.3.1",
"@stdlib/number": "^0.3.1",
"@stdlib/object": "^0.3.1",
"@stdlib/os": "^0.3.1",
"@stdlib/plot": "^0.3.1",
"@stdlib/process": "^0.3.1",
"@stdlib/proxy": "^0.3.1",
"@stdlib/random": "^0.3.1",
"@stdlib/regexp": "^0.3.1",
"@stdlib/repl": "^0.3.1",
"@stdlib/simulate": "^0.3.1",
"@stdlib/slice": "^0.3.1",
"@stdlib/stats": "^0.3.1",
"@stdlib/streams": "^0.3.1",
"@stdlib/strided": "^0.3.1",
"@stdlib/string": "^0.3.1",
"@stdlib/symbol": "^0.3.1",
"@stdlib/time": "^0.3.1",
"@stdlib/types": "^0.4.1",
"@stdlib/utils": "^0.3.1",
"acorn": "^8.1.0",
"acorn-loose": "^8.0.2",
"acorn-walk": "^8.0.2",
Expand Down

0 comments on commit b877636

Please sign in to comment.