Skip to content

Commit 7dbc375

Browse files
chore: add structured package data for math/base/special/factoriallnf
PR-URL: #8344 Ref: #7924 Co-authored-by: Athan Reines <kgryte@gmail.com> Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent d67890b commit 7dbc375

File tree

1 file changed

+80
-2
lines changed
  • lib/node_modules/@stdlib/math/base/special/factoriallnf

1 file changed

+80
-2
lines changed

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

Lines changed: 80 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,87 @@
6464
"logarithm",
6565
"fact",
6666
"lfact",
67-
"factoriallnf",
67+
"factorialln",
6868
"combinatorics",
6969
"gamma",
7070
"number"
71-
]
71+
],
72+
"__stdlib__": {
73+
"scaffold": {
74+
"$schema": "math/base@v1.0",
75+
"base_alias": "factorialln",
76+
"alias": "factoriallnf",
77+
"pkg_desc": "compute the natural logarithm of the factorial function",
78+
"desc": "computes the natural logarithm of the factorial function",
79+
"short_desc": "natural logarithm of the factorial function",
80+
"parameters": [
81+
{
82+
"name": "x",
83+
"desc": "input value",
84+
"type": {
85+
"javascript": "number",
86+
"jsdoc": "number",
87+
"c": "float",
88+
"dtype": "float32"
89+
},
90+
"domain": [
91+
{
92+
"min": 0,
93+
"max": "infinity"
94+
}
95+
],
96+
"rand": {
97+
"prng": "random/base/discrete-uniform",
98+
"parameters": [
99+
0,
100+
100
101+
]
102+
},
103+
"example_values": [
104+
1,
105+
2,
106+
3,
107+
4,
108+
5,
109+
6,
110+
7,
111+
8,
112+
9,
113+
10,
114+
11,
115+
12,
116+
13,
117+
14,
118+
93,
119+
95,
120+
96,
121+
97,
122+
98,
123+
99
124+
]
125+
}
126+
],
127+
"output_policy": "real_floating_point_and_generic",
128+
"returns": {
129+
"desc": "result",
130+
"type": {
131+
"javascript": "number",
132+
"jsdoc": "number",
133+
"c": "float",
134+
"dtype": "float32"
135+
}
136+
},
137+
"keywords": [
138+
"factorial",
139+
"log-scale",
140+
"logarithm",
141+
"fact",
142+
"lfact",
143+
"factorialln",
144+
"combinatorics",
145+
"gamma"
146+
],
147+
"extra_keywords": []
148+
}
149+
}
72150
}

0 commit comments

Comments
 (0)