@stdlib/complex-float32 0.3.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2024 The Stdlib Authors.
1
+ Copyright (c) 2016-2026 The Stdlib Authors.
package/README.md CHANGED
@@ -157,7 +157,7 @@ See [LICENSE][stdlib-license].
157
157
 
158
158
  ## Copyright
159
159
 
160
- Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
160
+ Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
161
161
 
162
162
  </section>
163
163
 
@@ -170,8 +170,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
170
170
  [npm-image]: http://img.shields.io/npm/v/@stdlib/complex-float32.svg
171
171
  [npm-url]: https://npmjs.org/package/@stdlib/complex-float32
172
172
 
173
- [test-image]: https://github.com/stdlib-js/complex-float32/actions/workflows/test.yml/badge.svg?branch=v0.3.0
174
- [test-url]: https://github.com/stdlib-js/complex-float32/actions/workflows/test.yml?query=branch:v0.3.0
173
+ [test-image]: https://github.com/stdlib-js/complex-float32/actions/workflows/test.yml/badge.svg?branch=v0.4.0
174
+ [test-url]: https://github.com/stdlib-js/complex-float32/actions/workflows/test.yml?query=branch:v0.4.0
175
175
 
176
176
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/complex-float32/main.svg
177
177
  [coverage-url]: https://codecov.io/github/stdlib-js/complex-float32?branch=main
@@ -183,8 +183,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
183
183
 
184
184
  -->
185
185
 
186
- [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
187
- [chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
186
+ [chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
187
+ [chat-url]: https://stdlib.zulipchat.com
188
188
 
189
189
  [stdlib]: https://github.com/stdlib-js/stdlib
190
190
 
@@ -46,19 +46,11 @@ interface Namespace {
46
46
  *
47
47
  * @example
48
48
  * var Complex64 = require( '@stdlib/complex-float32-ctor' );
49
- * var realf = require( '@stdlib/complex-float32-real' );
50
- * var imagf = require( '@stdlib/complex-float32-imag' );
51
49
  *
52
50
  * var z = new Complex64( 5.0, 3.0 );
53
51
  *
54
52
  * var v = ns.conj( z );
55
- * // returns <Complex64>
56
- *
57
- * var re = realf( v );
58
- * // returns 5.0
59
- *
60
- * var im = imagf( v );
61
- * // returns -3.0
53
+ * // returns <Complex64>[ 5.0, -3.0 ]
62
54
  */
63
55
  conj: typeof conj;
64
56
 
@@ -87,8 +79,8 @@ interface Namespace {
87
79
  * Parse a string representation of a 64-bit complex number.
88
80
  *
89
81
  * @param str - string representation of a complex number
90
- * @returns Complex64 instance
91
82
  * @throws must provide a string recognized as a complex number
83
+ * @returns Complex64 instance
92
84
  *
93
85
  * @example
94
86
  * var str = '5 + 3i';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stdlib/complex-float32",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "description": "Single-precision complex number functions.",
5
5
  "license": "Apache-2.0",
6
6
  "author": {
@@ -30,9 +30,9 @@
30
30
  "url": "https://github.com/stdlib-js/stdlib/issues"
31
31
  },
32
32
  "dependencies": {
33
- "@stdlib/complex-float32-base": "^0.1.0",
33
+ "@stdlib/complex-float32-base": "^0.1.1",
34
34
  "@stdlib/complex-float32-conj": "^0.1.1",
35
- "@stdlib/complex-float32-ctor": "^0.0.2",
35
+ "@stdlib/complex-float32-ctor": "^0.1.0",
36
36
  "@stdlib/complex-float32-imag": "^0.1.1",
37
37
  "@stdlib/complex-float32-parse": "^0.0.2",
38
38
  "@stdlib/complex-float32-real": "^0.1.1",