Skip to content

Commit 487e048

Browse files
authored
chore: update meta data
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 3ce6cde commit 487e048

File tree

1 file changed

+74
-39
lines changed
  • lib/node_modules/@stdlib/math/base/special/cfloor

1 file changed

+74
-39
lines changed

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

Lines changed: 74 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/math/base/special/cfloor",
33
"version": "0.0.0",
4-
"description": "Round a double-precision complex floating-point number toward negative infinity.",
4+
"description": "Round each component of a double-precision complex floating-point number toward negative infinity.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",
@@ -72,72 +72,108 @@
7272
"$schema": "math/base@v1.0",
7373
"base_alias": "cfloor",
7474
"alias": "cfloor",
75-
"pkg_desc": "round a double-precision complex floating-point number toward negative infinity",
76-
"desc": "rounds a double-precision complex floating-point number toward negative infinity",
77-
"short_desc": "round a complex number toward negative infinity",
75+
"pkg_desc": "round each component of a double-precision complex floating-point number toward negative infinity",
76+
"desc": "rounds each component a double-precision complex floating-point number toward negative infinity",
77+
"short_desc": "",
7878
"parameters": [
7979
{
8080
"name": "z",
8181
"desc": "input value",
8282
"type": {
8383
"javascript": "Complex128",
8484
"jsdoc": "Complex128",
85-
"c": "double complex",
85+
"c": "stdlib_complex128_t",
8686
"dtype": "complex128"
8787
},
88-
"domain": [
89-
{
90-
"min": "-infinity",
91-
"max": "infinity"
92-
}
93-
],
88+
"domain": null,
9489
"rand": {
9590
"prng": "random/base/uniform",
9691
"parameters": [
97-
-10,
98-
10
99-
]
92+
[
93+
-10,
94+
10
95+
],
96+
[
97+
-10,
98+
10
99+
]
100100
},
101101
"example_values": [
102102
{
103-
"re": -4.2,
104-
"im": 5.5
103+
"re": -3.14,
104+
"im": -1.5
105+
},
106+
{
107+
"re": 0,
108+
"im": 0
105109
},
106110
{
107-
"re": 9.99999,
108-
"im": 0.1
111+
"re": -1.5,
112+
"im": 2.5
109113
},
110114
{
111-
"re": 0.0,
112-
"im": 0.0
115+
"re": 2.5,
116+
"im": -1.5
113117
},
114118
{
115-
"re": -1.5,
116-
"im": 2.8
119+
"re": 0,
120+
"im": -3.7
121+
},
122+
{
123+
"re": 4.2,
124+
"im": 0
125+
},
126+
{
127+
"re": 21.2,
128+
"im": 3
129+
},
130+
{
131+
"re": 11,
132+
"im": -5
133+
},
134+
{
135+
"re": 33,
136+
"im": -14.67
137+
},
138+
{
139+
"re": -42,
140+
"im": 9.3
141+
},
142+
{
143+
"re": -3,
144+
"im": 3
145+
},
146+
{
147+
"re": 73,
148+
"im": 31
149+
},
150+
{
151+
"re": -2.45,
152+
"im": 1.23
117153
},
118154
{
119-
"re": 3.7,
120-
"im": -6.4
155+
"re": 2.45,
156+
"im": -1.23
121157
},
122158
{
123-
"re": -8.1,
124-
"im": -3.9
159+
"re": 1.77,
160+
"im": -3.14
125161
},
126162
{
127-
"re": 12.6,
128-
"im": 7.3
163+
"re": -7.5,
164+
"im": 8.2
129165
},
130166
{
131-
"re": -5.5,
132-
"im": 1.1
167+
"re": 5.5,
168+
"im": -12.3
133169
},
134170
{
135-
"re": 2.2,
136-
"im": -4.7
171+
"re": -15.8,
172+
"im": 0.4
137173
},
138174
{
139-
"re": -7.8,
140-
"im": 9.2
175+
"re": 0.99,
176+
"im": -0.99
141177
}
142178
]
143179
}
@@ -147,20 +183,19 @@
147183
"type": {
148184
"javascript": "Complex128",
149185
"jsdoc": "Complex128",
150-
"c": "double complex",
186+
"c": "stdlib_complex128_t",
151187
"dtype": "complex128"
152188
}
153189
},
154190
"keywords": [
155191
"floor",
192+
"cfloor",
156193
"round",
157194
"complex",
158-
"cmplx",
159-
"number"
195+
"cmplx"
160196
],
161197
"extra_keywords": [
162-
"math.floor",
163-
"cfloor"
198+
"math.floor"
164199
]
165200
}
166201
}

0 commit comments

Comments
 (0)