Skip to content

Commit 04b119e

Browse files
committed
Auto-generated commit
1 parent a058e6b commit 04b119e

File tree

3 files changed

+86
-3
lines changed

3 files changed

+86
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-10-05)
7+
## Unreleased (2025-10-14)
88

99
<section class="features">
1010

@@ -686,6 +686,7 @@ A total of 67 issues were closed in this release:
686686

687687
<details>
688688

689+
- [`5e81b1b`](https://github.com/stdlib-js/stdlib/commit/5e81b1b2d7a346174db7b37834685083793e389d) - **chore:** add structured package data for `math/base/special/expit` [(#8209)](https://github.com/stdlib-js/stdlib/pull/8209) _(by Manvith M, Athan Reines, Gunj Joshi)_
689690
- [`4792a3c`](https://github.com/stdlib-js/stdlib/commit/4792a3cde7d7425fb1e83f3d7457a46aeba84ce0) - **chore:** fix C lint errors [(#8202)](https://github.com/stdlib-js/stdlib/pull/8202) _(by GeoDaoyu)_
690691
- [`4a75f6d`](https://github.com/stdlib-js/stdlib/commit/4a75f6df054e6d718e40a37737938996ddd43006) - **revert:** undo commits adding tests for full code coverage _(by Philipp Burckhardt)_
691692
- [`0a65e10`](https://github.com/stdlib-js/stdlib/commit/0a65e10b6161874c950ebc20224a394c59398afc) - **test:** add tests to achieve full coverage in `digamma` _(by Philipp Burckhardt)_
@@ -1656,7 +1657,7 @@ A total of 67 issues were closed in this release:
16561657

16571658
### Contributors
16581659

1659-
A total of 47 people contributed to this release. Thank you to the following contributors:
1660+
A total of 48 people contributed to this release. Thank you to the following contributors:
16601661

16611662
- Aayush Khanna
16621663
- Anmol Sah
@@ -1685,6 +1686,7 @@ A total of 47 people contributed to this release. Thank you to the following con
16851686
- Krishnam Agarwal
16861687
- Lalit Narayan Yadav
16871688
- Lokesh Ranjan
1689+
- Manvith M
16881690
- Mihir Pandit
16891691
- Nakul Krishnakumar
16901692
- Neeraj Pathak

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ Jalaj Kumar <[email protected]>
8989
James Gelok <[email protected]>
9090
9191
Jaysukh Makvana <[email protected]>
92+
9293
Jenish Thapa <[email protected]>
9394
Jithin KS <[email protected]>
9495
Joel Mathew Koshy <[email protected]>
@@ -241,4 +242,5 @@ pranav-1720 <[email protected]>
241242
rahulrangers <[email protected]>
242243
243244
245+
youzi-forge <[email protected]>
244246

base/special/expit/package.json

Lines changed: 80 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,84 @@
6464
"log-odds",
6565
"sigmoid",
6666
"special"
67-
]
67+
],
68+
"__stdlib__": {
69+
"scaffold": {
70+
"$schema": "math/[email protected]",
71+
"base_alias": "expit",
72+
"alias": "expit",
73+
"pkg_desc": "evaluate the standard logistic function for a double-precision floating-point number",
74+
"desc": "evaluates the standard logistic function for a double-precision floating-point number",
75+
"short_desc": "standard logistic function",
76+
"parameters": [
77+
{
78+
"name": "x",
79+
"desc": "input value",
80+
"type": {
81+
"javascript": "number",
82+
"jsdoc": "number",
83+
"c": "double",
84+
"dtype": "float64"
85+
},
86+
"domain": [
87+
{
88+
"min": "-infinity",
89+
"max": "infinity"
90+
}
91+
],
92+
"rand": {
93+
"prng": "random/base/uniform",
94+
"parameters": [
95+
-5,
96+
5
97+
]
98+
},
99+
"example_values": [
100+
-4.62,
101+
3.17,
102+
-2.41,
103+
1.28,
104+
-0.73,
105+
2.56,
106+
-3.09,
107+
0.41,
108+
4.12,
109+
-1.85,
110+
2.93,
111+
-4.37,
112+
1.67,
113+
-0.28,
114+
3.74,
115+
-2.96,
116+
0.83,
117+
-1.12,
118+
4.89,
119+
-3.51
120+
]
121+
}
122+
],
123+
"output_policy": "real_floating_point_and_generic",
124+
"returns": {
125+
"desc": "function value",
126+
"type": {
127+
"javascript": "number",
128+
"jsdoc": "number",
129+
"c": "double",
130+
"dtype": "float64"
131+
}
132+
},
133+
"keywords": [
134+
"logit",
135+
"inverse",
136+
"expit",
137+
"logistic",
138+
"proportion",
139+
"log-odds",
140+
"sigmoid"
141+
],
142+
"extra_keywords": [
143+
"math.exp"
144+
]
145+
}
146+
}
68147
}

0 commit comments

Comments
 (0)