Skip to content

Commit 04a683d

Browse files
chore: add structured package data for math/base/special/versin
--- 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 dcafcbc commit 04a683d

File tree

1 file changed

+82
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/versin

1 file changed

+82
-1
lines changed

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

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,86 @@
6565
"trigonometry",
6666
"radians",
6767
"angle"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "vercos",
73+
"alias": "vercos",
74+
"pkg_desc": "compute the versed sine",
75+
"desc": "computes the versed sine",
76+
"short_desc": "versed sine",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value (in radians)",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "double",
85+
"dtype": "float64"
86+
},
87+
"domain": [
88+
{
89+
"min": "-infinity",
90+
"max": "infinity"
91+
}
92+
],
93+
"rand": {
94+
"prng": "random/base/uniform",
95+
"parameters": [
96+
-10,
97+
10
98+
]
99+
},
100+
"example_values": [
101+
64,
102+
27,
103+
0,
104+
0.1,
105+
-9,
106+
8,
107+
-1,
108+
125,
109+
-10.2,
110+
11.3,
111+
-12.4,
112+
3.5,
113+
-1.6,
114+
15.7,
115+
-16,
116+
17.9,
117+
-188,
118+
19.11,
119+
-200,
120+
21.15
121+
]
122+
}
123+
],
124+
"output_policy": "real_floating_point_and_generic",
125+
"returns": {
126+
"desc": "versed sine",
127+
"type": {
128+
"javascript": "number",
129+
"jsdoc": "number",
130+
"c": "double",
131+
"dtype": "float64"
132+
}
133+
},
134+
"keywords": [
135+
"versin",
136+
"versine",
137+
"versed sine",
138+
"cosine",
139+
"cos",
140+
"trig",
141+
"trigonometry",
142+
"radians",
143+
"angle"
144+
],
145+
"extra_keywords": [
146+
"math.sin"
147+
]
148+
}
149+
}
69150
}

0 commit comments

Comments
 (0)