Skip to content

Commit bf7c8d7

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

File tree

1 file changed

+76
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/secdf

1 file changed

+76
-1
lines changed

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

Lines changed: 76 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,80 @@
6262
"trig",
6363
"trigonometry",
6464
"angle"
65-
]
65+
],
66+
"__stdlib__": {
67+
"scaffold": {
68+
"$schema": "math/[email protected]",
69+
"base_alias": "secd",
70+
"alias": "secdf",
71+
"pkg_desc": "compute the secant of a single-precision floating-point number (in degrees)",
72+
"desc": "computes the secant of a single-precision floating-point number (in degrees)",
73+
"short_desc": "secant",
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+
-180,
94+
180
95+
]
96+
},
97+
"example_values": [
98+
0,
99+
30,
100+
45,
101+
60,
102+
90,
103+
120,
104+
135,
105+
150,
106+
180,
107+
-30,
108+
-45,
109+
-60,
110+
-90,
111+
-120,
112+
-135,
113+
-150,
114+
-180
115+
]
116+
}
117+
],
118+
"output_policy": "real_floating_point_and_generic",
119+
"returns": {
120+
"desc": "secant",
121+
"type": {
122+
"javascript": "number",
123+
"jsdoc": "number",
124+
"c": "float",
125+
"dtype": "float32"
126+
}
127+
},
128+
"keywords": [
129+
"secant",
130+
"cosine",
131+
"inverse",
132+
"trig",
133+
"trigonometry",
134+
"angle"
135+
],
136+
"extra_keywords": [
137+
"math.sec"
138+
]
139+
}
140+
}
66141
}

0 commit comments

Comments
 (0)