File tree Expand file tree Collapse file tree 2 files changed +138
-3
lines changed
Expand file tree Collapse file tree 2 files changed +138
-3
lines changed Original file line number Diff line number Diff line change @@ -699,6 +699,7 @@ A total of 71 issues were closed in this release:
699699
700700<details >
701701
702+ - [ ` b09b9e6 ` ] ( https://github.com/stdlib-js/stdlib/commit/b09b9e62684c6498984431e2fc268f6b1c783cf3 ) - ** chore:** add structured package data for ` math/base/special/cfloor ` [ (#8574 )] ( https://github.com/stdlib-js/stdlib/pull/8574 ) _ (by Kaustubh Patange, Athan Reines)_
702703- [ ` 50453ac ` ] ( https://github.com/stdlib-js/stdlib/commit/50453ac1c17c648d7ddcc247b8e142d73a64dece ) - ** chore:** fix EditorConfig lint errors [ (#8570 )] ( https://github.com/stdlib-js/stdlib/pull/8570 ) _ (by Aman Singh)_
703704- [ ` ec35e72 ` ] ( https://github.com/stdlib-js/stdlib/commit/ec35e72d9b49b4b5c9d908dd7a497c7368e10249 ) - ** feat:** update math scaffold databases [ (#8545 )] ( https://github.com/stdlib-js/stdlib/pull/8545 ) _ (by stdlib-bot)_
704705- [ ` 821a0bc ` ] ( https://github.com/stdlib-js/stdlib/commit/821a0bc32c11aee8fe746ad0d5d92b70dba69e4d ) - ** docs:** update related packages sections [ (#8535 )] ( https://github.com/stdlib-js/stdlib/pull/8535 ) _ (by stdlib-bot)_
@@ -1795,7 +1796,7 @@ A total of 71 issues were closed in this release:
17951796
17961797### Contributors
17971798
1798- A total of 51 people contributed to this release. Thank you to the following contributors:
1799+ A total of 52 people contributed to this release. Thank you to the following contributors:
17991800
18001801- Aayush Khanna
18011802- Aman Singh
@@ -1823,6 +1824,7 @@ A total of 51 people contributed to this release. Thank you to the following con
18231824- Jay Soni
18241825- Karan Anand
18251826- Karan Vasudevamurthy
1827+ - Kaustubh Patange
18261828- Kavyansh-Bagdi
18271829- Krie
18281830- Krishnam Agarwal
Original file line number Diff line number Diff line change 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" ,
6666 " complex" ,
6767 " cmplx" ,
6868 " number"
69- ]
69+ ],
70+ "__stdlib__" : {
71+ "scaffold" : {
72+ "$schema" :
" math/[email protected] " ,
73+ "base_alias" : " cfloor" ,
74+ "alias" : " cfloor" ,
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" : " " ,
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+ " floor" ,
193+ " cfloor" ,
194+ " round" ,
195+ " complex" ,
196+ " cmplx"
197+ ],
198+ "extra_keywords" : [
199+ " math.floor"
200+ ]
201+ }
202+ }
70203}
You can’t perform that action at this time.
0 commit comments