Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed May 26, 2024
1 parent 7572dfd commit 4dc0a10
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,10 @@ var z = complex( 5.0, 3.0 );
// returns <Complex128>
```

By default, the function returns a [128-bit complex number][@stdlib/complex/float64]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:
By default, the function returns a [128-bit complex number][@stdlib/complex/float64/ctor]. To specify an alternative underlying data type, set the `dtype` parameter to one of the following:

- [`'float64'`][@stdlib/complex/float64]: store **real** and **imaginary** components as double-precision floating-point numbers.
- [`'float32'`][@stdlib/complex/float32]: store **real** and **imaginary** components as single-precision floating-point numbers.
- [`'float64'`][@stdlib/complex/float64/ctor]: store **real** and **imaginary** components as double-precision floating-point numbers.
- [`'float32'`][@stdlib/complex/float32/ctor]: store **real** and **imaginary** components as single-precision floating-point numbers.

```javascript
var z = complex( 5.0, 3.0, 'float32' );
Expand Down Expand Up @@ -146,8 +146,8 @@ for ( i = 0; i < 100; i++ ) {

## See Also

- <span class="package-name">[`@stdlib/complex-float64`][@stdlib/complex/float64]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
- <span class="package-name">[`@stdlib/complex-float32`][@stdlib/complex/float32]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>
- <span class="package-name">[`@stdlib/complex-float64/ctor`][@stdlib/complex/float64/ctor]</span><span class="delimiter">: </span><span class="description">128-bit complex number.</span>
- <span class="package-name">[`@stdlib/complex-float32/ctor`][@stdlib/complex/float32/ctor]</span><span class="delimiter">: </span><span class="description">64-bit complex number.</span>

</section>

Expand Down Expand Up @@ -227,9 +227,9 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].

<!-- <related-links> -->

[@stdlib/complex/float64]: https://github.com/stdlib-js/complex-float64
[@stdlib/complex/float64/ctor]: https://github.com/stdlib-js/complex-float64-ctor

[@stdlib/complex/float32]: https://github.com/stdlib-js/complex-float32
[@stdlib/complex/float32/ctor]: https://github.com/stdlib-js/complex-float32-ctor

<!-- </related-links> -->

Expand Down

0 comments on commit 4dc0a10

Please sign in to comment.