Skip to content

Commit c4e3ddd

Browse files
committed
chore: add structured package data for math/base/special/absgammalnf
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: passed - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 5ef479c commit c4e3ddd

File tree

1 file changed

+83
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/absgammalnf

1 file changed

+83
-1
lines changed

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

Lines changed: 83 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,87 @@
6868
"lgamma",
6969
"lgammaf",
7070
"float"
71-
]
71+
],
72+
"__stdlib__": {
73+
"scaffold": {
74+
"$schema": "math/[email protected]",
75+
"base_alias": "absgammaln",
76+
"alias": "absgammalnf",
77+
"pkg_desc": "evaluate the natural logarithm of the absolute value of the gamma function",
78+
"desc": "evaluates the natural logarithm of the absolute value of the gamma function",
79+
"short_desc": "natural logarithm of absolute gamma 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": "-infinity",
93+
"max": "infinity"
94+
}
95+
],
96+
"rand": {
97+
"prng": "random/base/uniform",
98+
"parameters": [
99+
-10,
100+
10
101+
]
102+
},
103+
"example_values": [
104+
64,
105+
27,
106+
0,
107+
0.1,
108+
-9,
109+
8,
110+
-1,
111+
125,
112+
-10.2,
113+
11.3,
114+
-12.4,
115+
3.5,
116+
-1.6,
117+
15.7,
118+
-16,
119+
17.9,
120+
-188,
121+
19.11,
122+
-200,
123+
21.15
124+
]
125+
}
126+
],
127+
"output_policy": "same",
128+
"returns": {
129+
"desc": "natural logarithm of absolute gamma function",
130+
"type": {
131+
"javascript": "number",
132+
"jsdoc": "number",
133+
"c": "float",
134+
"dtype": "float32"
135+
}
136+
},
137+
"keywords": [
138+
"absgammalnf",
139+
"gamma",
140+
"log",
141+
"logarithm",
142+
"natural",
143+
"absolute",
144+
"special",
145+
"function",
146+
"single",
147+
"precision"
148+
],
149+
"extra_keywords": [
150+
"math.lgamma"
151+
]
152+
}
153+
}
72154
}

0 commit comments

Comments
 (0)