Skip to content

Commit 24512d6

Browse files
committed
Auto-generated commit
1 parent 276a07c commit 24512d6

File tree

2 files changed

+75
-1
lines changed

2 files changed

+75
-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+
- [`b992e9e`](https://github.com/stdlib-js/stdlib/commit/b992e9eb368ffb97dc7ee69887670c4254f32c46) - **chore:** add structured package data for `math/base/special/gammasgnf` [(#8440)](https://github.com/stdlib-js/stdlib/pull/8440) _(by Pratik, Athan Reines)_
698699
- [`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)_
699700
- [`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)_
700701
- [`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)_

base/special/gammasgnf/package.json

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

0 commit comments

Comments
 (0)