Skip to content

Commit 88d2ebd

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

File tree

1 file changed

+83
-1
lines changed

1 file changed

+83
-1
lines changed

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

Lines changed: 83 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,87 @@
6666
"trigonometry",
6767
"radians",
6868
"angle"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "sec",
74+
"alias": "secf",
75+
"pkg_desc": "compute the secant of a single-precision floating-point number (in radians)",
76+
"desc": "computes the secant of a single-precision floating-point number (in radians)",
77+
"short_desc": "secant",
78+
"parameters": [
79+
{
80+
"name": "x",
81+
"desc": "input value (in radians)",
82+
"type": {
83+
"javascript": "number",
84+
"jsdoc": "number",
85+
"c": "float",
86+
"dtype": "float32"
87+
},
88+
"domain": [
89+
{
90+
"min": "-infinity",
91+
"max": "infinity"
92+
}
93+
],
94+
"rand": {
95+
"prng": "random/base/uniform",
96+
"parameters": [
97+
-10,
98+
10
99+
]
100+
},
101+
"example_values": [
102+
0,
103+
0.5236,
104+
0.7854,
105+
1.5708,
106+
1.0472,
107+
2.3562,
108+
3.1416,
109+
4.7124,
110+
6.2832,
111+
-0.5236,
112+
-0.7854,
113+
-1.0472,
114+
-1.5708,
115+
-2.3562,
116+
-3.1416,
117+
7.854,
118+
-7.854,
119+
0.1,
120+
-0.1,
121+
3.5
122+
]
123+
}
124+
],
125+
"output_policy": "real_floating_point_and_generic",
126+
"returns": {
127+
"desc": "secant",
128+
"type": {
129+
"javascript": "number",
130+
"jsdoc": "number",
131+
"c": "float",
132+
"dtype": "float32"
133+
}
134+
},
135+
"keywords": [
136+
"cos",
137+
"cosine",
138+
"sec",
139+
"secant",
140+
"secf",
141+
"trig",
142+
"trigonometry",
143+
"radians",
144+
"angle"
145+
],
146+
"extra_keywords": [
147+
"math.sec",
148+
"math.cos"
149+
]
150+
}
151+
}
70152
}

0 commit comments

Comments
 (0)