Skip to content

Commit e27709a

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

File tree

1 file changed

+77
-1
lines changed

1 file changed

+77
-1
lines changed

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

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

0 commit comments

Comments
 (0)