Skip to content

Commit e98e490

Browse files
committed
chore: add structured package data for math/base/special/vercos
--- 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 e98e490

File tree

1 file changed

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

1 file changed

+82
-1
lines changed

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

Lines changed: 82 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,86 @@
6767
"trigonometry",
6868
"radians",
6969
"angle"
70-
]
70+
],
71+
"__stdlib__": {
72+
"scaffold": {
73+
"$schema": "math/[email protected]",
74+
"base_alias": "vercos",
75+
"alias": "vercos",
76+
"pkg_desc": "compute the versed cosine",
77+
"desc": "computes the versed cosine",
78+
"short_desc": "versed cosine",
79+
"parameters": [
80+
{
81+
"name": "x",
82+
"desc": "input value (in radians)",
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+
-10,
99+
10
100+
]
101+
},
102+
"example_values": [
103+
64,
104+
27,
105+
0,
106+
0.1,
107+
-9,
108+
8,
109+
-1,
110+
125,
111+
-10.2,
112+
11.3,
113+
-12.4,
114+
3.5,
115+
-1.6,
116+
15.7,
117+
-16,
118+
17.9,
119+
-188,
120+
19.11,
121+
-200,
122+
21.15
123+
]
124+
}
125+
],
126+
"output_policy": "real_floating_point_and_generic",
127+
"returns": {
128+
"desc": "versed cosine",
129+
"type": {
130+
"javascript": "number",
131+
"jsdoc": "number",
132+
"c": "double",
133+
"dtype": "float64"
134+
}
135+
},
136+
"keywords": [
137+
"vercos",
138+
"vercosin",
139+
"vercosine",
140+
"versed cosine",
141+
"vcs",
142+
"cosine",
143+
"cos",
144+
"trig",
145+
"trigonometry",
146+
"radians",
147+
"angle"
148+
],
149+
"extra_keywords": []
150+
}
151+
}
71152
}

0 commit comments

Comments
 (0)