Skip to content

Commit 3c873d2

Browse files
chore: add structured data package for math/base/special/acsc
PR-URL: #8026 Ref: #7924 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
1 parent b9f0cc3 commit 3c873d2

File tree

1 file changed

+84
-1
lines changed

1 file changed

+84
-1
lines changed

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

Lines changed: 84 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,88 @@
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 arccosecant",
75+
"desc": "computes the arccosecant",
76+
"short_desc": "arcosecant",
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+
3.14,
124+
-3.14
125+
]
126+
}
127+
],
128+
"output_policy": "real_floating_point_and_generic",
129+
"returns": {
130+
"desc": "arccosecant",
131+
"type": {
132+
"javascript": "number",
133+
"jsdoc": "number",
134+
"c": "double",
135+
"dtype": "float64"
136+
}
137+
},
138+
"keywords": [
139+
"inverse",
140+
"cosecant",
141+
"acsc",
142+
"arc",
143+
"arccosecant",
144+
"angle",
145+
"sin"
146+
],
147+
"extra_keywords": [
148+
"math.asin"
149+
]
150+
}
151+
}
69152
}

0 commit comments

Comments
 (0)