Skip to content

Commit 00f1d80

Browse files
committed
chore: add structured package data for math/base/special/riemann-zeta
--- 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 68b443f commit 00f1d80

File tree

1 file changed

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

1 file changed

+75
-1
lines changed

lib/node_modules/@stdlib/math/base/special/riemann-zeta/package.json

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,79 @@
6767
"special",
6868
"function",
6969
"complex analysis"
70-
]
70+
],
71+
"__stdlib__": {
72+
"scaffold": {
73+
"$schema": "math/[email protected]",
74+
"base_alias": "riemann-zeta",
75+
"alias": "riemann-zeta",
76+
"pkg_desc": "evaluate the Riemann zeta function as a function of a real variable `s`",
77+
"desc": "evaluates the Riemann zeta function as a function of a real variable `s`",
78+
"short_desc": "Riemann zeta",
79+
"parameters": [
80+
{
81+
"name": "x",
82+
"desc": "input value",
83+
"type": {
84+
"javascript": "number",
85+
"jsdoc": "number",
86+
"c": "double",
87+
"dtype": "float64"
88+
},
89+
"domain": [
90+
{
91+
"min": "-infinity",
92+
"max": "infinity"
93+
}
94+
],
95+
"rand": {
96+
"prng": "random/base/uniform",
97+
"parameters": [
98+
-100,
99+
100
100+
]
101+
},
102+
"example_values": [
103+
-10,
104+
-5,
105+
-4,
106+
-3,
107+
-2,
108+
-1,
109+
-0.5,
110+
0,
111+
0.5,
112+
0.9,
113+
1.1,
114+
2,
115+
3,
116+
4,
117+
5,
118+
6,
119+
10,
120+
20,
121+
50,
122+
100
123+
]
124+
}
125+
],
126+
"returns": {
127+
"desc": "Riemann zeta",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "double",
132+
"dtype": "float64"
133+
}
134+
},
135+
"keywords": [
136+
"zeta",
137+
"riemann",
138+
"euler",
139+
"physics",
140+
"complex analysis"
141+
],
142+
"extra_keywords": []
143+
}
144+
}
71145
}

0 commit comments

Comments
 (0)