Skip to content

Commit a0f61b1

Browse files
committed
Auto-generated commit
1 parent 9a997ac commit a0f61b1

2 files changed

Lines changed: 76 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
### Features
1212

13+
- [`e4442f2`](https://github.com/stdlib-js/stdlib/commit/e4442f21bca0114e934d71da6b3d61e54d3a711b) - update math scaffold databases [(#9453)](https://github.com/stdlib-js/stdlib/pull/9453)
1314
- [`15e0b09`](https://github.com/stdlib-js/stdlib/commit/15e0b09a9bda620a7a80e265049d8ffdc2e632b1) - update math scaffold databases [(#9451)](https://github.com/stdlib-js/stdlib/pull/9451)
1415
- [`ef1ccd2`](https://github.com/stdlib-js/stdlib/commit/ef1ccd2fa109e02c4956b58385601908adbde12c) - add `math/base/special/asinhf` [(#8893)](https://github.com/stdlib-js/stdlib/pull/8893)
1516
- [`0d81289`](https://github.com/stdlib-js/stdlib/commit/0d812895bf69ea0843359084f62063c7a84d0eb8) - update math scaffold databases [(#8798)](https://github.com/stdlib-js/stdlib/pull/8798)
@@ -710,6 +711,7 @@ A total of 78 issues were closed in this release:
710711

711712
<details>
712713

714+
- [`e4442f2`](https://github.com/stdlib-js/stdlib/commit/e4442f21bca0114e934d71da6b3d61e54d3a711b) - **feat:** update math scaffold databases [(#9453)](https://github.com/stdlib-js/stdlib/pull/9453) _(by stdlib-bot)_
713715
- [`bba26d6`](https://github.com/stdlib-js/stdlib/commit/bba26d6b93fc742d7518ca4090787cd41f4659e0) - **chore:** add `float32` scalar kernel of `log1p` in unary function database [(#9452)](https://github.com/stdlib-js/stdlib/pull/9452) _(by Gunj Joshi)_
714716
- [`15e0b09`](https://github.com/stdlib-js/stdlib/commit/15e0b09a9bda620a7a80e265049d8ffdc2e632b1) - **feat:** update math scaffold databases [(#9451)](https://github.com/stdlib-js/stdlib/pull/9451) _(by stdlib-bot)_
715717
- [`f452525`](https://github.com/stdlib-js/stdlib/commit/f45252555bdcc40bac553852422ae028194179cb) - **chore:** add structured package data for `math/base/special/csignum` [(#8583)](https://github.com/stdlib-js/stdlib/pull/8583) _(by Kaustubh Patange, Athan Reines)_

special/data/unary.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12509,6 +12509,80 @@
1250912509
"math.log1p"
1251012510
]
1251112511
},
12512+
"@stdlib/math/base/special/log1pf": {
12513+
"$schema": "math/base@v1.0",
12514+
"base_alias": "log1p",
12515+
"alias": "log1pf",
12516+
"pkg_desc": "evaluate the natural logarithm of 1+x as a single-precision floating-point number",
12517+
"desc": "evaluates the natural logarithm of 1+x as a single-precision floating-point number",
12518+
"short_desc": "natural logarithm of 1+x",
12519+
"parameters": [
12520+
{
12521+
"name": "x",
12522+
"desc": "input value",
12523+
"type": {
12524+
"javascript": "number",
12525+
"jsdoc": "number",
12526+
"c": "float",
12527+
"dtype": "float32"
12528+
},
12529+
"domain": [
12530+
{
12531+
"min": -1,
12532+
"max": "infinity"
12533+
}
12534+
],
12535+
"rand": {
12536+
"prng": "random/base/uniform",
12537+
"parameters": [
12538+
-0.5,
12539+
10
12540+
]
12541+
},
12542+
"example_values": [
12543+
4,
12544+
0.5,
12545+
0.1,
12546+
0.01,
12547+
0.001,
12548+
1,
12549+
2,
12550+
3,
12551+
5,
12552+
10,
12553+
0.2,
12554+
0.3,
12555+
0.7,
12556+
1.5,
12557+
2.5,
12558+
7,
12559+
-0.5,
12560+
-0.1,
12561+
-0.9,
12562+
0
12563+
]
12564+
}
12565+
],
12566+
"returns": {
12567+
"desc": "natural logarithm of 1+x",
12568+
"type": {
12569+
"javascript": "number",
12570+
"jsdoc": "number",
12571+
"c": "float",
12572+
"dtype": "float32"
12573+
}
12574+
},
12575+
"keywords": [
12576+
"log1p",
12577+
"logarithm",
12578+
"ln",
12579+
"natural"
12580+
],
12581+
"extra_keywords": [
12582+
"math.log",
12583+
"math.log1p"
12584+
]
12585+
},
1251212586
"@stdlib/math/base/special/log1p": {
1251312587
"$schema": "math/base@v1.0",
1251412588
"base_alias": "log1p",

0 commit comments

Comments
 (0)