Skip to content

Commit 53e9ad0

Browse files
chore: add structured data package for math/base/special/acsc
--- 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 fe96d97 commit 53e9ad0

File tree

1 file changed

+85
-1
lines changed

1 file changed

+85
-1
lines changed

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

Lines changed: 85 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,89 @@
6565
"trig",
6666
"trigonometry",
6767
"angle"
68-
]
68+
],
69+
"__stdlib__": {
70+
"scaffold": {
71+
"$schema": "math/[email protected]",
72+
"base_alias": "acsc",
73+
"alias": "acsc",
74+
"pkg_desc": "compute the inverse cosecant of a number",
75+
"desc": "computes the inverse cosecant (arc-cosecant) of a number",
76+
"short_desc": "inverse cosecant",
77+
"parameters": [
78+
{
79+
"name": "x",
80+
"desc": "input value",
81+
"type": {
82+
"javascript": "number",
83+
"jsdoc": "number",
84+
"c": "double",
85+
"dtype": "float64"
86+
},
87+
"domain": [
88+
{
89+
"min": "-infinity",
90+
"max": -1
91+
},
92+
{
93+
"min": 1,
94+
"max": "infinity"
95+
}
96+
],
97+
"rand": {
98+
"prng": "random/base/uniform",
99+
"parameters": [
100+
1.1,
101+
10
102+
]
103+
},
104+
"example_values": [
105+
2,
106+
-2,
107+
1.5,
108+
-3.7,
109+
5,
110+
-8.2,
111+
10,
112+
-12.5,
113+
3.3,
114+
-4.4,
115+
7.7,
116+
-9.9,
117+
15,
118+
-20,
119+
1.2,
120+
-1.3,
121+
2.5,
122+
-2.6
123+
]
124+
}
125+
],
126+
"output_policy": "real_floating_point_and_generic",
127+
"returns": {
128+
"desc": "inverse cosecant",
129+
"type": {
130+
"javascript": "number",
131+
"jsdoc": "number",
132+
"c": "double",
133+
"dtype": "float64"
134+
}
135+
},
136+
"keywords": [
137+
"inverse",
138+
"cosecant",
139+
"acsc",
140+
"arc",
141+
"arccosecant",
142+
"trig",
143+
"trigonometry",
144+
"radians",
145+
"angle",
146+
"sin"
147+
],
148+
"extra_keywords": [
149+
"math.asin"
150+
]
151+
}
152+
}
69153
}

0 commit comments

Comments
 (0)