-
-
Notifications
You must be signed in to change notification settings - Fork 872
chore: add structured package data for math/base/special/cceil
#7964
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from 2 commits
12eb145
d8cc1f7
8c3e2a8
b18198e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,5 +66,138 @@ | |
"complex", | ||
"cmplx", | ||
"number" | ||
] | ||
], | ||
"__stdlib__": { | ||
"scaffold": { | ||
"$schema": "math/[email protected]", | ||
"base_alias": "ceil", | ||
"alias": "cceil", | ||
"pkg_desc": "round each component of a double-precision complex floating-point number toward positive infinity", | ||
"desc": "rounds each component of a double-precision complex floating-point number toward positive infinity", | ||
"short_desc": "complex ceil", | ||
"parameters": [ | ||
{ | ||
"name": "z", | ||
"desc": "input value", | ||
"type": { | ||
"javascript": "Complex128", | ||
"jsdoc": "Complex128", | ||
"c": "stdlib_complex128_t", | ||
"dtype": "complex128" | ||
}, | ||
"domain": [ | ||
{ | ||
"min": "-infinity", | ||
"max": "infinity" | ||
} | ||
], | ||
"rand": { | ||
"prng": "random/base/uniform", | ||
"parameters": [ | ||
-10, | ||
10 | ||
] | ||
}, | ||
Comment on lines
+88
to
+100
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These ones are a bit tricky, as we don't have a PRNG capable of generating complex numbers. This comes up enough that we should go ahead and do this. And once done, we should update this PR accordingly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay, got it! Appreciate the review. |
||
"example_values": [ | ||
{ | ||
"re": -3.14, | ||
"im": -1.5 | ||
}, | ||
{ | ||
"re": 0, | ||
"im": 0 | ||
}, | ||
{ | ||
"re": -1.5, | ||
"im": 2.5 | ||
}, | ||
{ | ||
"re": 2.5, | ||
"im": -1.5 | ||
}, | ||
{ | ||
"re": 0, | ||
"im": -3.7 | ||
}, | ||
{ | ||
"re": 4.2, | ||
"im": 0 | ||
}, | ||
{ | ||
"re": 21.2, | ||
"im": 3 | ||
}, | ||
{ | ||
"re": 11, | ||
"im": -5 | ||
}, | ||
{ | ||
"re": 33, | ||
"im": -14.67 | ||
}, | ||
{ | ||
"re": -42, | ||
"im": 9.3 | ||
}, | ||
{ | ||
"re": -3, | ||
"im": 3 | ||
}, | ||
{ | ||
"re": 73, | ||
"im": 31 | ||
}, | ||
{ | ||
"re": -2.45, | ||
"im": 1.23 | ||
}, | ||
{ | ||
"re": 2.45, | ||
"im": -1.23 | ||
}, | ||
{ | ||
"re": 1.77, | ||
"im": -3.14 | ||
}, | ||
{ | ||
"re": -7.5, | ||
"im": 8.2 | ||
}, | ||
{ | ||
"re": 5.5, | ||
"im": -12.3 | ||
}, | ||
{ | ||
"re": -15.8, | ||
"im": 0.4 | ||
}, | ||
{ | ||
"re": 0.99, | ||
"im": -0.99 | ||
} | ||
] | ||
} | ||
], | ||
"returns": { | ||
"desc": "rounded complex value", | ||
"type": { | ||
"javascript": "Complex128", | ||
"jsdoc": "Complex128", | ||
"c": "stdlib_complex128_t", | ||
"dtype": "complex128" | ||
} | ||
}, | ||
"keywords": [ | ||
"ceil", | ||
"cceil", | ||
"round", | ||
"complex", | ||
"complex128", | ||
"positive infinity" | ||
kgryte marked this conversation as resolved.
Show resolved
Hide resolved
|
||
], | ||
"extra_keywords": [ | ||
"math.ceil" | ||
] | ||
} | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.