Skip to content

Commit a114f97

Browse files
committed
chore: add structured package data for math/base/special/trigammaf
--- 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ad8f246 commit a114f97

File tree

1 file changed

+79
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/trigammaf

1 file changed

+79
-1
lines changed

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

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,83 @@
6565
"scalar",
6666
"number",
6767
"psi"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "trigammaf",
73+
"alias": "trigammaf",
74+
"pkg_desc": "evaluate the trigamma function for a single-precision floating-point number",
75+
"desc": "evaluates the trigamma function for a single-precision floating-point number",
76+
"short_desc": "trigamma",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "float",
85+
"dtype": "float32"
86+
},
87+
"domain": [
88+
{
89+
"min": "-infinity",
90+
"max": "infinity"
91+
}
92+
],
93+
"rand": {
94+
"prng": "random/base/uniform",
95+
"parameters": [
96+
0.5,
97+
20
98+
]
99+
},
100+
"example_values": [
101+
0.51,
102+
1.37,
103+
2.93,
104+
4.18,
105+
7.64,
106+
-2.47,
107+
-1.23,
108+
-3.79,
109+
-0.61,
110+
5.42,
111+
9.08,
112+
12.57,
113+
15.33,
114+
-4.62,
115+
-6.14,
116+
18.91,
117+
10.26,
118+
-5.37,
119+
3.41,
120+
0.89
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": "float",
131+
"dtype": "float32"
132+
}
133+
},
134+
"keywords": [
135+
"derivative",
136+
"trigamma",
137+
"gamma",
138+
"gammaf",
139+
"trigammaf",
140+
"scalar",
141+
"number",
142+
"psi"
143+
],
144+
"extra_keywords": []
145+
}
146+
}
69147
}

0 commit comments

Comments
 (0)