Skip to content

Commit 5fe8fa1

Browse files
committed
Auto-generated commit
1 parent 9c8ebc8 commit 5fe8fa1

3 files changed

Lines changed: 82 additions & 2 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2025-04-30)
7+
## Unreleased (2025-05-03)
88

99
<section class="features">
1010

@@ -458,6 +458,7 @@ A total of 40 issues were closed in this release:
458458

459459
<details>
460460

461+
- [`23bf064`](https://github.com/stdlib-js/stdlib/commit/23bf064a542e8a3ba998ded0e94f24396a467d63) - **chore:** add structured package data for `math/base/special/abs2` [(#6903)](https://github.com/stdlib-js/stdlib/pull/6903) _(by Karan Anand)_
461462
- [`5c3ca55`](https://github.com/stdlib-js/stdlib/commit/5c3ca5574141408ea5d00fd2030dcf0c70b82d3c) - **chore:** fix EditorConfig lint errors [(#6870)](https://github.com/stdlib-js/stdlib/pull/6870) _(by zhanggy)_
462463
- [`4fd384d`](https://github.com/stdlib-js/stdlib/commit/4fd384d6ba0a4d5653e27123f53220cb90df0094) - **feat:** add `math/base/special/logitf` [(#3367)](https://github.com/stdlib-js/stdlib/pull/3367) _(by Vivek Maurya, stdlib-bot, Gunj Joshi, Karan Anand)_
463464
- [`9415971`](https://github.com/stdlib-js/stdlib/commit/9415971fffd5a7a8db22479d086fa7f14d9392f0) - **chore:** fix EditorConfig lint errors [(#6863)](https://github.com/stdlib-js/stdlib/pull/6863) _(by zhanggy)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ GK Bishnoi <gkishan1kyt@gmail.com>
5454
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
5555
Gaurav <gaurav70380@gmail.com>
5656
Gautam sharma <gautamkrishnasharma1@gmail.com>
57+
Girish Garg <garggirish2020@gmail.com>
5758
Golden Kumar <103646877+AuenKr@users.noreply.github.com>
5859
Gunj Joshi <gunjjoshi8372@gmail.com>
5960
Gururaj Gurram <gururajgurram1512@gmail.com>
@@ -86,6 +87,7 @@ Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
8687
Krishnam Agarwal <83017176+888krishnam@users.noreply.github.com>
8788
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
8889
Kshitij-Dale <152467202+Kshitij-Dale@users.noreply.github.com>
90+
Lalit Narayan Yadav <162928571+LalitNarayanYadav@users.noreply.github.com>
8991
Lovelin Dhoni J B <100030865+lovelindhoni@users.noreply.github.com>
9092
MANI <77221000+Eternity0207@users.noreply.github.com>
9193
Mahfuza Humayra Mohona <mhmohona@gmail.com>
@@ -190,3 +192,4 @@ pranav-1720 <123018993+pranav-1720@users.noreply.github.com>
190192
rahulrangers <127782777+rahulrangers@users.noreply.github.com>
191193
rainn <88160429+AmCodesLame@users.noreply.github.com>
192194
rei2hu <reimu@reimu.ws>
195+
zhanggy <geodaoyu@foxmail.com>

base/special/abs2/package.json

Lines changed: 77 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,81 @@
6868
"double",
6969
"dbl"
7070
],
71-
"__stdlib__": {}
71+
"__stdlib__": {
72+
"scaffold": {
73+
"$schema": "math/base@v1.0",
74+
"base_alias": "abs2",
75+
"alias": "abs2",
76+
"pkg_desc": "compute the squared absolute value",
77+
"desc": "computes the squared absolute value",
78+
"short_desc": "squared absolute value",
79+
"parameters": [
80+
{
81+
"name": "x",
82+
"desc": "input value",
83+
"type": {
84+
"javascript": "number",
85+
"jsdoc": "number",
86+
"c": "double",
87+
"dtype": "float64"
88+
},
89+
"domain": [
90+
{
91+
"min": "-infinity",
92+
"max": "infinity"
93+
}
94+
],
95+
"rand": {
96+
"prng": "random/base/uniform",
97+
"parameters": [
98+
-10,
99+
10
100+
]
101+
},
102+
"example_values": [
103+
64,
104+
27,
105+
0,
106+
0.1,
107+
-9,
108+
8,
109+
-1,
110+
125,
111+
-10.2,
112+
11.3,
113+
-12.4,
114+
3.5,
115+
-1.6,
116+
15.7,
117+
-16,
118+
17.9,
119+
-188,
120+
19.11,
121+
-200,
122+
21.15
123+
]
124+
}
125+
],
126+
"returns": {
127+
"desc": "squared absolute value",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "double",
132+
"dtype": "float64"
133+
}
134+
},
135+
"keywords": [
136+
"abs",
137+
"abs2",
138+
"squared",
139+
"square",
140+
"absolute",
141+
"magnitude"
142+
],
143+
"extra_keywords": [
144+
"math.abs"
145+
]
146+
}
147+
}
72148
}

0 commit comments

Comments
 (0)