File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 44
55<section class =" release " id =" unreleased " >
66
7- ## Unreleased (2026-03-29 )
7+ ## Unreleased (2026-04-10 )
88
99<section class =" features " >
1010
@@ -125,6 +125,7 @@ A total of 7 issues were closed in this release:
125125
126126<details >
127127
128+ - [ ` 35566af ` ] ( https://github.com/stdlib-js/stdlib/commit/35566af0add64775e60422fd16e50e1bec3947e7 ) - ** docs:** fix C examples in READMEs [ (#11229 )] ( https://github.com/stdlib-js/stdlib/pull/11229 ) _ (by anee3, Athan Reines)_
128129- [ ` d9a5e08 ` ] ( https://github.com/stdlib-js/stdlib/commit/d9a5e081c5376c8688ffd96f29dec0e135cb123c ) - ** docs:** update namespace table of contents [ (#11114 )] ( https://github.com/stdlib-js/stdlib/pull/11114 ) _ (by stdlib-bot)_
129130- [ ` a921830 ` ] ( https://github.com/stdlib-js/stdlib/commit/a921830140c2ed2909d462864a21890615f6e082 ) - ** feat:** update ` complex/float32/base ` TypeScript declarations [ (#11112 )] ( https://github.com/stdlib-js/stdlib/pull/11112 ) _ (by stdlib-bot)_
130131- [ ` 40a9690 ` ] ( https://github.com/stdlib-js/stdlib/commit/40a9690b3cc701abfe2063cf4c1cf055582bed35 ) - ** feat:** add ` muladd ` to namespace _ (by Athan Reines)_
@@ -291,7 +292,7 @@ A total of 7 issues were closed in this release:
291292
292293### Contributors
293294
294- A total of 13 people contributed to this release. Thank you to the following contributors:
295+ A total of 14 people contributed to this release. Thank you to the following contributors:
295296
296297- Aayush Khanna
297298- Aryan J
@@ -306,6 +307,7 @@ A total of 13 people contributed to this release. Thank you to the following con
306307- SAHIL KUMAR
307308- Sachin Pangal
308309- Shabareesh Shetty
310+ - anee3
309311
310312</section >
311313
Original file line number Diff line number Diff line change @@ -183,9 +183,9 @@ Performs a multiply-add operation involving three single-precision complex float
183183#include " stdlib/complex/float32/real.h"
184184#include " stdlib/complex/float32/imag.h"
185185
186- stdlib_complex64_t z1 = sstdlib_complex64 ( 5 .0f , 3 .0f );
187- stdlib_complex64_t z2 = sstdlib_complex64 ( -2 .0f , 1 .0f );
188- stdlib_complex64_t z3 = sstdlib_complex64 ( 7 .0f , -8 .0f );
186+ stdlib_complex64_t z1 = stdlib_complex64 ( 5 .0f , 3 .0f );
187+ stdlib_complex64_t z2 = stdlib_complex64 ( -2 .0f , 1 .0f );
188+ stdlib_complex64_t z3 = stdlib_complex64 ( 7 .0f , -8 .0f );
189189
190190stdlib_complex64_t out = stdlib_base_complex64_muladd( z1, z2, z3 );
191191
You can’t perform that action at this time.
0 commit comments