Skip to content

Commit 4f80f46

Browse files
committed
chore: add structured package data for math/base/special/sindf
--- 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 af5f5cc commit 4f80f46

File tree

1 file changed

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

1 file changed

+79
-1
lines changed

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

Lines changed: 79 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,83 @@
6262
"sindf",
6363
"trig",
6464
"trigonometry"
65-
]
65+
],
66+
"__stdlib__": {
67+
"scaffold": {
68+
"$schema": "math/[email protected]",
69+
"base_alias": "sind",
70+
"alias": "sindf",
71+
"pkg_desc": "compute the sine of a single-precision floating-point number (in degrees)",
72+
"desc": "computes the sine of a single-precision floating-point number (in degrees)",
73+
"short_desc": "sine",
74+
"parameters": [
75+
{
76+
"name": "x",
77+
"desc": "input value (in degrees)",
78+
"type": {
79+
"javascript": "number",
80+
"jsdoc": "number",
81+
"c": "float",
82+
"dtype": "float32"
83+
},
84+
"domain": [
85+
{
86+
"min": "-infinity",
87+
"max": "infinity"
88+
}
89+
],
90+
"rand": {
91+
"prng": "random/base/uniform",
92+
"parameters": [
93+
-360,
94+
360
95+
]
96+
},
97+
"example_values": [
98+
0,
99+
30,
100+
45,
101+
60,
102+
90,
103+
120,
104+
150,
105+
180,
106+
270,
107+
360,
108+
-30,
109+
-45,
110+
-60,
111+
-90,
112+
-180,
113+
-270,
114+
-360,
115+
15,
116+
-15,
117+
75
118+
]
119+
}
120+
],
121+
"output_policy": "real_floating_point_and_generic",
122+
"returns": {
123+
"desc": "sine",
124+
"type": {
125+
"javascript": "number",
126+
"jsdoc": "number",
127+
"c": "float",
128+
"dtype": "float32"
129+
}
130+
},
131+
"keywords": [
132+
"degree",
133+
"sin",
134+
"sine",
135+
"sindf",
136+
"trig",
137+
"trigonometry"
138+
],
139+
"extra_keywords": [
140+
"math.sin"
141+
]
142+
}
143+
}
66144
}

0 commit comments

Comments
 (0)