diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ea8af70b..f70aaf005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@
-## Unreleased (2024-07-15) +## Unreleased (2024-07-16)
@@ -2647,6 +2647,8 @@ A total of 35 people contributed to this release. Thank you to the following con
+- [`8908bda`](https://github.com/stdlib-js/stdlib/commit/8908bda11588f80edf375466ae9e84a3d70cf7d3) - **refactor:** update paths _(by Athan Reines)_ +- [`ad760a9`](https://github.com/stdlib-js/stdlib/commit/ad760a922086631226d8f759a0d467c707fbc0fb) - **refactor:** update paths _(by Athan Reines)_ - [`722452c`](https://github.com/stdlib-js/stdlib/commit/722452c97282738c0a83e336720c63ee785bc69f) - **feat:** rename 'none' transpose operation to 'no-transpose' _(by Athan Reines)_ - [`d04dcbd`](https://github.com/stdlib-js/stdlib/commit/d04dcbd6dc3b0bf4a89bd3947d317fa5ff15bb38) - **docs:** remove private annotations in C comments _(by Philipp Burckhardt)_ - [`3dda09b`](https://github.com/stdlib-js/stdlib/commit/3dda09be640b5ee96278691de75d35a61b2ecfe8) - **feat:** add `blas/base/scasum` [(#2573)](https://github.com/stdlib-js/stdlib/pull/2573) _(by Aman Bhansali, Athan Reines)_ diff --git a/base/dcabs1/manifest.json b/base/dcabs1/manifest.json index e8745c59a..58ff3e1a4 100644 --- a/base/dcabs1/manifest.json +++ b/base/dcabs1/manifest.json @@ -67,7 +67,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim" + "@stdlib/complex/float64/reim" ] }, { @@ -86,7 +86,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim", + "@stdlib/complex/float64/reim", "@stdlib/complex/real", "@stdlib/complex/imag" ] @@ -198,7 +198,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim" + "@stdlib/complex/float64/reim" ] }, { @@ -217,7 +217,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim", + "@stdlib/complex/float64/reim", "@stdlib/complex/real", "@stdlib/complex/imag" ] @@ -374,7 +374,7 @@ "@stdlib/napi/create-double", "@stdlib/complex/float64/ctor", "@stdlib/math/base/special/abs", - "@stdlib/complex/reim" + "@stdlib/complex/float64/reim" ] }, { @@ -393,7 +393,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim" + "@stdlib/complex/float64/reim" ] }, { @@ -412,7 +412,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim", + "@stdlib/complex/float64/reim", "@stdlib/complex/real", "@stdlib/complex/imag" ] @@ -434,7 +434,7 @@ "dependencies": [ "@stdlib/math/base/special/abs", "@stdlib/complex/float64/ctor", - "@stdlib/complex/reim" + "@stdlib/complex/float64/reim" ] } ] diff --git a/base/dcabs1/src/dcabs1.c b/base/dcabs1/src/dcabs1.c index e083dea97..50562dbf8 100644 --- a/base/dcabs1/src/dcabs1.c +++ b/base/dcabs1/src/dcabs1.c @@ -19,7 +19,7 @@ #include "stdlib/blas/base/dcabs1.h" #include "stdlib/math/base/special/abs.h" #include "stdlib/complex/float64/ctor.h" -#include "stdlib/complex/reim.h" +#include "stdlib/complex/float64/reim.h" /** * Computes the sum of the absolute values of the real and imaginary components of a double-precision complex floating-point number. @@ -38,6 +38,6 @@ double c_dcabs1( const stdlib_complex128_t z ) { double re; double im; - stdlib_reim( z, &re, &im ); + stdlib_complex128_reim( z, &re, &im ); return stdlib_base_abs( re ) + stdlib_base_abs( im ); } diff --git a/base/scabs1/manifest.json b/base/scabs1/manifest.json index 2257b9336..32f6f0be7 100644 --- a/base/scabs1/manifest.json +++ b/base/scabs1/manifest.json @@ -67,7 +67,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf" + "@stdlib/complex/float32/reim" ] }, { @@ -86,7 +86,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf", + "@stdlib/complex/float32/reim", "@stdlib/complex/realf", "@stdlib/complex/imagf" ] @@ -198,7 +198,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf" + "@stdlib/complex/float32/reim" ] }, { @@ -217,7 +217,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf", + "@stdlib/complex/float32/reim", "@stdlib/complex/realf", "@stdlib/complex/imagf" ] @@ -374,7 +374,7 @@ "@stdlib/napi/create-double", "@stdlib/complex/float32/ctor", "@stdlib/math/base/special/absf", - "@stdlib/complex/reimf" + "@stdlib/complex/float32/reim" ] }, { @@ -393,7 +393,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf" + "@stdlib/complex/float32/reim" ] }, { @@ -412,7 +412,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf", + "@stdlib/complex/float32/reim", "@stdlib/complex/realf", "@stdlib/complex/imagf" ] @@ -434,7 +434,7 @@ "dependencies": [ "@stdlib/math/base/special/absf", "@stdlib/complex/float32/ctor", - "@stdlib/complex/reimf" + "@stdlib/complex/float32/reim" ] } ] diff --git a/base/scabs1/src/scabs1.c b/base/scabs1/src/scabs1.c index 5220c2f73..a945f8a48 100644 --- a/base/scabs1/src/scabs1.c +++ b/base/scabs1/src/scabs1.c @@ -19,7 +19,7 @@ #include "stdlib/blas/base/scabs1.h" #include "stdlib/math/base/special/absf.h" #include "stdlib/complex/float32/ctor.h" -#include "stdlib/complex/reimf.h" +#include "stdlib/complex/float32/reim.h" /** * Computes the sum of the absolute values of the real and imaginary components of a single-precision complex floating-point number. @@ -38,6 +38,6 @@ float c_scabs1( const stdlib_complex64_t c ) { float re; float im; - stdlib_reimf( c, &re, &im ); + stdlib_complex64_reim( c, &re, &im ); return stdlib_base_absf( re ) + stdlib_base_absf( im ); }