Skip to content

Commit 92ed33b

Browse files
authored
feat: update math scaffold databases
PR-URL: #8604 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent f1fbeb4 commit 92ed33b

File tree

1 file changed

+131
-1
lines changed
  • lib/node_modules/@stdlib/math/special/data

1 file changed

+131
-1
lines changed

lib/node_modules/@stdlib/math/special/data/unary.json

Lines changed: 131 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9789,7 +9789,137 @@
97899789
]
97909790
},
97919791
"@stdlib/math/base/special/cfloorf": {},
9792-
"@stdlib/math/base/special/cfloor": {},
9792+
"@stdlib/math/base/special/cfloor": {
9793+
"$schema": "math/base@v1.0",
9794+
"base_alias": "cfloor",
9795+
"alias": "cfloor",
9796+
"pkg_desc": "round each component of a double-precision complex floating-point number toward negative infinity",
9797+
"desc": "rounds each component a double-precision complex floating-point number toward negative infinity",
9798+
"short_desc": "",
9799+
"parameters": [
9800+
{
9801+
"name": "z",
9802+
"desc": "input value",
9803+
"type": {
9804+
"javascript": "Complex128",
9805+
"jsdoc": "Complex128",
9806+
"c": "stdlib_complex128_t",
9807+
"dtype": "complex128"
9808+
},
9809+
"domain": null,
9810+
"rand": {
9811+
"prng": "random/base/uniform",
9812+
"parameters": [
9813+
[
9814+
-10,
9815+
10
9816+
],
9817+
[
9818+
-10,
9819+
10
9820+
]
9821+
]
9822+
},
9823+
"example_values": [
9824+
{
9825+
"re": -3.14,
9826+
"im": -1.5
9827+
},
9828+
{
9829+
"re": 0,
9830+
"im": 0
9831+
},
9832+
{
9833+
"re": -1.5,
9834+
"im": 2.5
9835+
},
9836+
{
9837+
"re": 2.5,
9838+
"im": -1.5
9839+
},
9840+
{
9841+
"re": 0,
9842+
"im": -3.7
9843+
},
9844+
{
9845+
"re": 4.2,
9846+
"im": 0
9847+
},
9848+
{
9849+
"re": 21.2,
9850+
"im": 3
9851+
},
9852+
{
9853+
"re": 11,
9854+
"im": -5
9855+
},
9856+
{
9857+
"re": 33,
9858+
"im": -14.67
9859+
},
9860+
{
9861+
"re": -42,
9862+
"im": 9.3
9863+
},
9864+
{
9865+
"re": -3,
9866+
"im": 3
9867+
},
9868+
{
9869+
"re": 73,
9870+
"im": 31
9871+
},
9872+
{
9873+
"re": -2.45,
9874+
"im": 1.23
9875+
},
9876+
{
9877+
"re": 2.45,
9878+
"im": -1.23
9879+
},
9880+
{
9881+
"re": 1.77,
9882+
"im": -3.14
9883+
},
9884+
{
9885+
"re": -7.5,
9886+
"im": 8.2
9887+
},
9888+
{
9889+
"re": 5.5,
9890+
"im": -12.3
9891+
},
9892+
{
9893+
"re": -15.8,
9894+
"im": 0.4
9895+
},
9896+
{
9897+
"re": 0.99,
9898+
"im": -0.99
9899+
}
9900+
]
9901+
}
9902+
],
9903+
"returns": {
9904+
"desc": "result",
9905+
"type": {
9906+
"javascript": "Complex128",
9907+
"jsdoc": "Complex128",
9908+
"c": "stdlib_complex128_t",
9909+
"dtype": "complex128"
9910+
}
9911+
},
9912+
"keywords": [
9913+
"floor",
9914+
"cfloor",
9915+
"round",
9916+
"complex",
9917+
"cmplx"
9918+
],
9919+
"extra_keywords": [
9920+
"math.floor"
9921+
]
9922+
},
97939923
"@stdlib/math/base/special/floor10": {
97949924
"$schema": "math/base@v1.0",
97959925
"base_alias": "floor10",

0 commit comments

Comments
 (0)