Skip to content

Commit 276a07c

Browse files
committed
Auto-generated commit
1 parent 9957be3 commit 276a07c

File tree

3 files changed

+82
-1
lines changed

3 files changed

+82
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,7 @@ A total of 70 issues were closed in this release:
695695

696696
<details>
697697

698+
- [`6295b0a`](https://github.com/stdlib-js/stdlib/commit/6295b0a66b76c60f2b4cc5613d61447111cf8b90) - **chore:** add structured package data for `math/base/special/gammasgn` [(#8441)](https://github.com/stdlib-js/stdlib/pull/8441) _(by Pratik, Athan Reines)_
698699
- [`aa21cdf`](https://github.com/stdlib-js/stdlib/commit/aa21cdf99c2dc289ec6707a1e46df1edfd6997e7) - **chore:** add structured package data for `math/base/special/hacovercos` [(#8437)](https://github.com/stdlib-js/stdlib/pull/8437) _(by Pratik, Athan Reines)_
699700
- [`4954940`](https://github.com/stdlib-js/stdlib/commit/495494087ecdcf1a80378e6103df3092bb59b280) - **chore:** add structured package data for `math/base/special/riemann-zeta` [(#8428)](https://github.com/stdlib-js/stdlib/pull/8428) _(by Manvith M, Athan Reines)_
700701
- [`1f10d15`](https://github.com/stdlib-js/stdlib/commit/1f10d15d05461baee65d787a0ec965f7d1510ef0) - **chore:** add structured package data for `math/base/special/rcbrt` [(#8426)](https://github.com/stdlib-js/stdlib/pull/8426) _(by Manvith M)_

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ For more information on the project, filing bug reports and feature requests, an
139139

140140
---
141141

142+
## License
143+
144+
See [LICENSE][stdlib-license].
145+
146+
142147
## Copyright
143148

144149
Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
@@ -185,6 +190,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
185190
[esm-readme]: https://github.com/stdlib-js/math/blob/esm/README.md
186191
[branches-url]: https://github.com/stdlib-js/math/blob/main/branches.md
187192

193+
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/math/main/LICENSE
194+
188195
<!-- <toc-links> -->
189196

190197
[@stdlib/math/array]: https://github.com/stdlib-js/math/tree/main/array

base/special/gammasgn/package.json

Lines changed: 74 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,5 +61,78 @@
6161
"gamma",
6262
"sign",
6363
"number"
64-
]
64+
],
65+
"__stdlib__": {
66+
"scaffold": {
67+
"$schema": "math/[email protected]",
68+
"base_alias": "gammasgn",
69+
"alias": "gammasgn",
70+
"pkg_desc": "compute the sign of the gamma function",
71+
"desc": "computes the sign of the gamma function",
72+
"short_desc": "sign of the gamma function",
73+
"parameters": [
74+
{
75+
"name": "x",
76+
"desc": "input value",
77+
"type": {
78+
"javascript": "number",
79+
"jsdoc": "number",
80+
"c": "double",
81+
"dtype": "float64"
82+
},
83+
"domain": [
84+
{
85+
"min": "-infinity",
86+
"max": "infinity"
87+
}
88+
],
89+
"rand": {
90+
"prng": "random/base/uniform",
91+
"parameters": [
92+
-10,
93+
10
94+
]
95+
},
96+
"example_values": [
97+
1,
98+
-0.5,
99+
-1.5,
100+
1.5,
101+
2,
102+
-2,
103+
3,
104+
4,
105+
5,
106+
0.5,
107+
2.5,
108+
-2.5,
109+
-3.5,
110+
0,
111+
-1,
112+
-3,
113+
10,
114+
-10.5,
115+
0.1,
116+
-0.1
117+
]
118+
}
119+
],
120+
"output_policy": "real_floating_point_and_generic",
121+
"returns": {
122+
"desc": "sign of the gamma function",
123+
"type": {
124+
"javascript": "number",
125+
"jsdoc": "number",
126+
"c": "double",
127+
"dtype": "float64"
128+
}
129+
},
130+
"keywords": [
131+
"gamma",
132+
"sign",
133+
"gammasgn"
134+
],
135+
"extra_keywords": []
136+
}
137+
}
65138
}

0 commit comments

Comments
 (0)