Skip to content

Commit 4bee70c

Browse files
committed
Auto-generated commit
1 parent 813a1ff commit 4bee70c

File tree

3 files changed

+82
-3
lines changed

3 files changed

+82
-3
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

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-09-08)
7+
## Unreleased (2025-09-09)
88

99
<section class="reverts">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`f4532a0`](https://github.com/stdlib-js/stdlib/commit/f4532a0a1c7a506a00ce68aa452790d62f01da1a) - **chore:** add structured package data for packages in `math/base/special` [(#8045)](https://github.com/stdlib-js/stdlib/pull/8045) _(by Gunj Joshi)_
2526
- [`630ddb7`](https://github.com/stdlib-js/stdlib/commit/630ddb777824b5f6e501fda6dadf4ce41dccb964) - **test:** replace equal with strictEqual _(by Karan Anand)_
2627
- [`a1e230f`](https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc) - **chore:** clean up cppcheck-suppress comments _(by Karan Anand)_
2728
- [`850472b`](https://github.com/stdlib-js/stdlib/commit/850472b35f4cf47cab44047acd94a9120d6d5b77) - **docs:** replace manual `for` loop in examples [(#6182)](https://github.com/stdlib-js/stdlib/pull/6182) _(by Karan Anand)_
@@ -43,9 +44,10 @@
4344

4445
### Contributors
4546

46-
A total of 3 people contributed to this release. Thank you to the following contributors:
47+
A total of 4 people contributed to this release. Thank you to the following contributors:
4748

4849
- Athan Reines
50+
- Gunj Joshi
4951
- Karan Anand
5052
- Philipp Burckhardt
5153

package.json

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,84 @@
104104
"polyfill",
105105
"ponyfill"
106106
],
107+
"__stdlib__": {
108+
"scaffold": {
109+
"$schema": "math/base@v1.0",
110+
"base_alias": "atan",
111+
"alias": "atan",
112+
"pkg_desc": "compute the arctangent (in radians) of a double-precision floating-point number",
113+
"desc": "computes the arctangent (in radians) of a double-precision floating-point number",
114+
"short_desc": "arctangent",
115+
"parameters": [
116+
{
117+
"name": "x",
118+
"desc": "input value",
119+
"type": {
120+
"javascript": "number",
121+
"jsdoc": "number",
122+
"c": "double",
123+
"dtype": "float64"
124+
},
125+
"domain": [
126+
{
127+
"min": "-infinity",
128+
"max": "infinity"
129+
}
130+
],
131+
"rand": {
132+
"prng": "random/base/uniform",
133+
"parameters": [
134+
-100,
135+
100
136+
]
137+
},
138+
"example_values": [
139+
0.33,
140+
-57.2,
141+
1.2,
142+
-0.77,
143+
1000,
144+
-3.41,
145+
8.9,
146+
-250.5,
147+
0.01,
148+
42,
149+
-19.7,
150+
73.6,
151+
-0.58,
152+
5.5,
153+
-99.9,
154+
7.25,
155+
-12.3,
156+
0,
157+
315.8,
158+
-1.1
159+
]
160+
}
161+
],
162+
"output_policy": "real_floating_point_and_generic",
163+
"returns": {
164+
"desc": "arctangent (in radians)",
165+
"type": {
166+
"javascript": "number",
167+
"jsdoc": "number",
168+
"c": "double",
169+
"dtype": "float64"
170+
}
171+
},
172+
"keywords": [
173+
"atan",
174+
"arctangent",
175+
"tangent",
176+
"tan",
177+
"arc",
178+
"inverse"
179+
],
180+
"extra_keywords": [
181+
"math.atan"
182+
]
183+
}
184+
},
107185
"funding": {
108186
"type": "opencollective",
109187
"url": "https://opencollective.com/stdlib"

0 commit comments

Comments
 (0)