@@ -25,7 +25,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
2525 < div class ='fl pad1y space-right2 '>
2626 < span class ="strong "> 100% </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 77/77 </ span >
28+ < span class ='fraction '> 64/64 </ span >
2929 </ div >
3030
3131
@@ -46,7 +46,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
4646 < div class ='fl pad1y space-right2 '>
4747 < span class ="strong "> 100% </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 77/77 </ span >
49+ < span class ='fraction '> 64/64 </ span >
5050 </ div >
5151
5252
@@ -127,33 +127,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
127127< a name ='L62 '> </ a > < a href ='#L62 '> 62</ a >
128128< a name ='L63 '> </ a > < a href ='#L63 '> 63</ a >
129129< a name ='L64 '> </ a > < a href ='#L64 '> 64</ a >
130- < a name ='L65 '> </ a > < a href ='#L65 '> 65</ a >
131- < a name ='L66 '> </ a > < a href ='#L66 '> 66</ a >
132- < a name ='L67 '> </ a > < a href ='#L67 '> 67</ a >
133- < a name ='L68 '> </ a > < a href ='#L68 '> 68</ a >
134- < a name ='L69 '> </ a > < a href ='#L69 '> 69</ a >
135- < a name ='L70 '> </ a > < a href ='#L70 '> 70</ a >
136- < a name ='L71 '> </ a > < a href ='#L71 '> 71</ a >
137- < a name ='L72 '> </ a > < a href ='#L72 '> 72</ a >
138- < a name ='L73 '> </ a > < a href ='#L73 '> 73</ a >
139- < a name ='L74 '> </ a > < a href ='#L74 '> 74</ a >
140- < a name ='L75 '> </ a > < a href ='#L75 '> 75</ a >
141- < a name ='L76 '> </ a > < a href ='#L76 '> 76</ a >
142- < a name ='L77 '> </ a > < a href ='#L77 '> 77</ a >
143- < a name ='L78 '> </ a > < a href ='#L78 '> 78</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 2x</ span >
144- < span class ="cline-any cline-yes "> 2x</ span >
145- < span class ="cline-any cline-yes "> 2x</ span >
146- < span class ="cline-any cline-yes "> 2x</ span >
147- < span class ="cline-any cline-yes "> 2x</ span >
148- < span class ="cline-any cline-yes "> 2x</ span >
149- < span class ="cline-any cline-yes "> 2x</ span >
150- < span class ="cline-any cline-yes "> 2x</ span >
151- < span class ="cline-any cline-yes "> 2x</ span >
152- < span class ="cline-any cline-yes "> 2x</ span >
153- < span class ="cline-any cline-yes "> 2x</ span >
154- < span class ="cline-any cline-yes "> 2x</ span >
155- < span class ="cline-any cline-yes "> 2x</ span >
156- < span class ="cline-any cline-yes "> 2x</ span >
130+ < a name ='L65 '> </ a > < a href ='#L65 '> 65</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 2x</ span >
157131< span class ="cline-any cline-yes "> 2x</ span >
158132< span class ="cline-any cline-yes "> 2x</ span >
159133< span class ="cline-any cline-yes "> 2x</ span >
@@ -257,26 +231,13 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
257231*
258232* @example
259233* var Complex64 = require( '@stdlib/complex/float32/ctor' );
260- * var realf = require( '@stdlib/complex/float32/real' );
261- * var imagf = require( '@stdlib/complex/float32/imag' );
262234*
263235* var z1 = new Complex64( 5.0, 3.0 );
264- * // returns <Complex64>
265- *
266236* var z2 = new Complex64( -2.0, 1.0 );
267- * // returns <Complex64>
268- *
269237* var z3 = new Complex64( 7.0, -8.0 );
270- * // returns <Complex64>
271238*
272239* var out = muladd( z1, z2, z3 );
273- * // returns <Complex64>
274- *
275- * var re = realf( out );
276- * // returns -6.0
277- *
278- * var im = imagf( out );
279- * // returns -9.0
240+ * // returns <Complex64>[ -6.0, -9.0 ]
280241*/
281242function muladd( alpha, x, y ) {
282243 var re0 = realf( alpha );
@@ -285,8 +246,8 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
285246 var im1 = imagf( x );
286247 var re2 = realf( y );
287248 var im2 = imagf( y );
288- var re = f32( f32(re0*re1) - f32(im0*im1) + re2 );
289- var im = f32( f32(re0*im1) + f32(im0*re1) + im2 );
249+ var re = f32( f32( f32( re0*re1) - f32(im0*im1) ) + re2 );
250+ var im = f32( f32( f32( re0*im1) + f32(im0*re1) ) + im2 );
290251 return new Complex64( re, im );
291252}
292253
@@ -301,7 +262,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
301262 < div class ='footer quiet pad2 space-top1 center small '>
302263 Code coverage generated by
303264 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
304- at 2025-09-01T09:52:41.985Z
265+ at 2025-09-07T06:20:23.200Z
305266 </ div >
306267 < script src ="../../../../../prettify.js "> </ script >
307268 < script >
0 commit comments