Skip to content

Commit 9fc1333

Browse files
chore: add structured package data for math/base/special/acoth
PR-URL: #7935 Ref: #7924 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]> Reviewed-by: Gunj Joshi <[email protected]>
1 parent 3d340e2 commit 9fc1333

File tree

1 file changed

+88
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/acoth

1 file changed

+88
-1
lines changed

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

Lines changed: 88 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,92 @@
7070
"trigonometry",
7171
"radians",
7272
"angle"
73-
]
73+
],
74+
"__stdlib__": {
75+
"scaffold": {
76+
"$schema": "math/[email protected]",
77+
"base_alias": "acoth",
78+
"alias": "acoth",
79+
"pkg_desc": "compute the inverse hyperbolic cotangent of a number",
80+
"desc": "computes the inverse hyperbolic cotangent of a number",
81+
"short_desc": "inverse hyperbolic cotangent",
82+
"parameters": [
83+
{
84+
"name": "x",
85+
"desc": "input value",
86+
"type": {
87+
"javascript": "number",
88+
"jsdoc": "number",
89+
"c": "double",
90+
"dtype": "float64"
91+
},
92+
"domain": [
93+
{
94+
"min": "-infinity",
95+
"max": -1
96+
},
97+
{
98+
"min": 1,
99+
"max": "infinity"
100+
}
101+
],
102+
"rand": {
103+
"prng": "random/base/uniform",
104+
"parameters": [
105+
1.1,
106+
10
107+
]
108+
},
109+
"example_values": [
110+
64,
111+
27,
112+
-9,
113+
8,
114+
-1,
115+
125,
116+
-10.2,
117+
11.3,
118+
-12.4,
119+
3.5,
120+
-1.6,
121+
15.7,
122+
-16,
123+
17.9,
124+
-188,
125+
19.11,
126+
-200,
127+
21.15,
128+
-1.2,
129+
1.7
130+
]
131+
}
132+
],
133+
"output_policy": "real_floating_point_and_generic",
134+
"returns": {
135+
"desc": "inverse hyperbolic cotangent",
136+
"type": {
137+
"javascript": "number",
138+
"jsdoc": "number",
139+
"c": "double",
140+
"dtype": "float64"
141+
}
142+
},
143+
"keywords": [
144+
"inverse",
145+
"cotangent",
146+
"acot",
147+
"cot",
148+
"coth",
149+
"arc",
150+
"arccotangent",
151+
"trig",
152+
"trigonometry",
153+
"radians",
154+
"angle"
155+
],
156+
"extra_keywords": [
157+
"math.atanh"
158+
]
159+
}
160+
}
74161
}

0 commit comments

Comments
 (0)