Skip to content

Commit 0bee91c

Browse files
committed
chore: add structured package data for math/base/special/expm1rel
--- 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 80e4200 commit 0bee91c

File tree

1 file changed

+80
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/expm1rel

1 file changed

+80
-1
lines changed

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

Lines changed: 80 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,5 +69,84 @@
6969
"euler",
7070
"number"
7171
],
72-
"__stdlib__": {}
72+
"__stdlib__": {
73+
"scaffold": {
74+
"$schema": "math/base@v1.0",
75+
"base_alias": "expm1rel",
76+
"alias": "expm1rel",
77+
"pkg_desc": "compute the relative error exponential",
78+
"desc": "computes the relative error exponential",
79+
"short_desc": "relative error exponential",
80+
"parameters": [
81+
{
82+
"name": "x",
83+
"desc": "input value",
84+
"type": {
85+
"javascript": "number",
86+
"jsdoc": "number",
87+
"c": "double",
88+
"dtype": "float64"
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+
-1.2,
105+
2,
106+
-3.1,
107+
-4.7,
108+
5.5,
109+
6.7,
110+
8.9,
111+
-10.2,
112+
11.3,
113+
-12.4,
114+
13.5,
115+
14.6,
116+
-15.7,
117+
16.8,
118+
-17.9,
119+
18.1,
120+
-19.11,
121+
20.12,
122+
-21.15,
123+
23.78
124+
]
125+
}
126+
],
127+
"returns": {
128+
"desc": "function value",
129+
"type": {
130+
"javascript": "number",
131+
"jsdoc": "number",
132+
"c": "double",
133+
"dtype": "float64"
134+
}
135+
},
136+
"keywords": [
137+
"expm1",
138+
"power",
139+
"natural",
140+
"exp",
141+
"relative",
142+
"error",
143+
"err",
144+
"exponential",
145+
"euler"
146+
],
147+
"extra_keywords": [
148+
"math.expm1"
149+
]
150+
}
151+
}
73152
}

0 commit comments

Comments
 (0)