Skip to content

Commit 8738587

Browse files
authored
chore: add structured package data for math/base/special/gamma1pm1
PR-URL: stdlib-js#8460 Ref: stdlib-js#7924 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 56fd54f commit 8738587

File tree

1 file changed

+75
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/gamma1pm1

1 file changed

+75
-1
lines changed

lib/node_modules/@stdlib/math/base/special/gamma1pm1/package.json

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

0 commit comments

Comments
 (0)