Skip to content

Commit d910ae7

Browse files
chore: add structured package data for math/base/special/cceil
PR-URL: #7964 Ref: #7924 Co-authored-by: Athan Reines <[email protected]> Reviewed-by: Athan Reines <[email protected]>
1 parent d8ad76b commit d910ae7

File tree

1 file changed

+134
-1
lines changed
  • lib/node_modules/@stdlib/math/base/special/cceil

1 file changed

+134
-1
lines changed

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

Lines changed: 134 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,138 @@
6666
"complex",
6767
"cmplx",
6868
"number"
69-
]
69+
],
70+
"__stdlib__": {
71+
"scaffold": {
72+
"$schema": "math/[email protected]",
73+
"base_alias": "ceil",
74+
"alias": "cceil",
75+
"pkg_desc": "round each component of a complex number toward positive infinity",
76+
"desc": "rounds each component of a complex number toward positive infinity",
77+
"short_desc": "",
78+
"parameters": [
79+
{
80+
"name": "z",
81+
"desc": "input value",
82+
"type": {
83+
"javascript": "Complex128",
84+
"jsdoc": "Complex128",
85+
"c": "stdlib_complex128_t",
86+
"dtype": "complex128"
87+
},
88+
"domain": null,
89+
"rand": {
90+
"prng": "random/base/uniform",
91+
"parameters": [
92+
[
93+
-10,
94+
10
95+
],
96+
[
97+
-10,
98+
10
99+
]
100+
]
101+
},
102+
"example_values": [
103+
{
104+
"re": -3.14,
105+
"im": -1.5
106+
},
107+
{
108+
"re": 0,
109+
"im": 0
110+
},
111+
{
112+
"re": -1.5,
113+
"im": 2.5
114+
},
115+
{
116+
"re": 2.5,
117+
"im": -1.5
118+
},
119+
{
120+
"re": 0,
121+
"im": -3.7
122+
},
123+
{
124+
"re": 4.2,
125+
"im": 0
126+
},
127+
{
128+
"re": 21.2,
129+
"im": 3
130+
},
131+
{
132+
"re": 11,
133+
"im": -5
134+
},
135+
{
136+
"re": 33,
137+
"im": -14.67
138+
},
139+
{
140+
"re": -42,
141+
"im": 9.3
142+
},
143+
{
144+
"re": -3,
145+
"im": 3
146+
},
147+
{
148+
"re": 73,
149+
"im": 31
150+
},
151+
{
152+
"re": -2.45,
153+
"im": 1.23
154+
},
155+
{
156+
"re": 2.45,
157+
"im": -1.23
158+
},
159+
{
160+
"re": 1.77,
161+
"im": -3.14
162+
},
163+
{
164+
"re": -7.5,
165+
"im": 8.2
166+
},
167+
{
168+
"re": 5.5,
169+
"im": -12.3
170+
},
171+
{
172+
"re": -15.8,
173+
"im": 0.4
174+
},
175+
{
176+
"re": 0.99,
177+
"im": -0.99
178+
}
179+
]
180+
}
181+
],
182+
"returns": {
183+
"desc": "result",
184+
"type": {
185+
"javascript": "Complex128",
186+
"jsdoc": "Complex128",
187+
"c": "stdlib_complex128_t",
188+
"dtype": "complex128"
189+
}
190+
},
191+
"keywords": [
192+
"ceil",
193+
"cceil",
194+
"round",
195+
"complex",
196+
"ceiling"
197+
],
198+
"extra_keywords": [
199+
"math.ceil"
200+
]
201+
}
202+
}
70203
}

0 commit comments

Comments
 (0)