Skip to content

Commit cc63e4d

Browse files
chore: add structured package data for math/base/special/cosdf
--- 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 2ff3d13 commit cc63e4d

File tree

1 file changed

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

1 file changed

+79
-1
lines changed

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

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,83 @@
6565
"trig",
6666
"float",
6767
"trigonometry"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "cos",
73+
"alias": "cosdf",
74+
"pkg_desc": "compute the cosine of a single-precision floating-point number",
75+
"desc": "computes the cosine of a single-precision floating-point number",
76+
"short_desc": "cosine",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value (in degrees)",
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+
-360,
97+
360
98+
]
99+
},
100+
"example_values": [
101+
0,
102+
30,
103+
45,
104+
60,
105+
90,
106+
120,
107+
180,
108+
-30,
109+
-45,
110+
-60,
111+
-90,
112+
-120,
113+
-180,
114+
270,
115+
-270,
116+
360,
117+
-360,
118+
220,
119+
-80,
120+
-40
121+
]
122+
}
123+
],
124+
"output_policy": "real_floating_point_and_generic",
125+
"returns": {
126+
"desc": "cosine",
127+
"type": {
128+
"javascript": "number",
129+
"jsdoc": "number",
130+
"c": "float",
131+
"dtype": "float32"
132+
}
133+
},
134+
"keywords": [
135+
"cos",
136+
"cosdf",
137+
"cosine",
138+
"trig",
139+
"trigonometry",
140+
"degrees"
141+
],
142+
"extra_keywords": [
143+
"math.cos"
144+
]
145+
}
146+
}
69147
}

0 commit comments

Comments
 (0)