Skip to content

Commit 7e5f50d

Browse files
committed
Update artifacts
1 parent 50ef0de commit 7e5f50d

File tree

7 files changed

+17
-16
lines changed

7 files changed

+17
-16
lines changed

complex/float32/base/mul/assign.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
195195
&nbsp;
196196
// MODULES //
197197
&nbsp;
198-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
198+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
199199
&nbsp;
200200
&nbsp;
201201
// MAIN //
@@ -219,8 +219,8 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
219219
* // returns &lt;Float32Array&gt;[ -13.0, -1.0 ]
220220
*/
221221
function assign( re1, im1, re2, im2, out, strideOut, offsetOut ) {
222-
out[ offsetOut ] = float64ToFloat32(re1*re2) - float64ToFloat32(im1*im2);
223-
out[ offsetOut+strideOut ] = float64ToFloat32(re1*im2) + float64ToFloat32(im1*re2);
222+
out[ offsetOut ] = f32(re1*re2) - f32(im1*im2);
223+
out[ offsetOut+strideOut ] = f32(re1*im2) + f32(im1*re2);
224224
return out;
225225
}
226226
&nbsp;
@@ -235,7 +235,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
235235
<div class='footer quiet pad2 space-top1 center small'>
236236
Code coverage generated by
237237
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
238-
at 2025-03-15T07:20:51.148Z
238+
at 2025-06-02T18:51:01.698Z
239239
</div>
240240
<script src="../../../../../prettify.js"></script>
241241
<script>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[191,191,100,5,5,100,2,2,100,191,191,100,"40308a8953dd480537d4c4359cc6e09f679e3ec1","2024-12-14 16:54:56 -0800"]
22
[321,321,100,9,9,100,4,4,100,321,321,100,"d7154e2c7756ce51a9bbbf38848960ea988d4ea6","2025-02-15 21:26:31 -0800"]
33
[321,321,100,9,9,100,4,4,100,321,321,100,"39e505f50432543c5e6c76c85392e59846ce58c6","2025-03-15 00:18:32 -0700"]
4+
[321,321,100,9,9,100,4,4,100,321,321,100,"3b08499dcdae21f946e61da757c0c21da2e8f9ed","2025-06-02 14:49:33 -0400"]

complex/float32/base/mul/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ <h1><a href="../../../../../index.html">All files</a> complex/float32/base/mul/l
161161
<div class='footer quiet pad2 space-top1 center small'>
162162
Code coverage generated by
163163
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
164-
at 2025-03-15T07:20:51.148Z
164+
at 2025-06-02T18:51:01.698Z
165165
</div>
166166
<script src="../../../../../prettify.js"></script>
167167
<script>

complex/float32/base/mul/index.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
268268
<div class='footer quiet pad2 space-top1 center small'>
269269
Code coverage generated by
270270
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
271-
at 2025-03-15T07:20:51.148Z
271+
at 2025-06-02T18:51:01.698Z
272272
</div>
273273
<script src="../../../../../prettify.js"></script>
274274
<script>

complex/float32/base/mul/main.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
227227
&nbsp;
228228
// MODULES //
229229
&nbsp;
230-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
230+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
231231
var Complex64 = require( '@stdlib/complex/float32/ctor' );
232232
var realf = require( '@stdlib/complex/float32/real' );
233233
var imagf = require( '@stdlib/complex/float32/imag' );
@@ -267,9 +267,9 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
267267
var re2 = realf( z2 );
268268
var im1 = imagf( z1 );
269269
var im2 = imagf( z2 );
270-
var re = float64ToFloat32(re1*re2) - float64ToFloat32(im1*im2);
271-
var im = float64ToFloat32(re1*im2) + float64ToFloat32(im1*re2);
272-
return new Complex64( float64ToFloat32( re ), float64ToFloat32( im ) );
270+
var re = f32(re1*re2) - f32(im1*im2);
271+
var im = f32(re1*im2) + f32(im1*re2);
272+
return new Complex64( f32( re ), f32( im ) );
273273
}
274274
&nbsp;
275275
&nbsp;
@@ -283,7 +283,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
283283
<div class='footer quiet pad2 space-top1 center small'>
284284
Code coverage generated by
285285
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
286-
at 2025-03-15T07:20:51.148Z
286+
at 2025-06-02T18:51:01.698Z
287287
</div>
288288
<script src="../../../../../prettify.js"></script>
289289
<script>

complex/float32/base/mul/native.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
265265
<div class='footer quiet pad2 space-top1 center small'>
266266
Code coverage generated by
267267
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
268-
at 2025-03-15T07:20:51.148Z
268+
at 2025-06-02T18:51:01.698Z
269269
</div>
270270
<script src="../../../../../prettify.js"></script>
271271
<script>

complex/float32/base/mul/strided.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
213213
&nbsp;
214214
// MODULES //
215215
&nbsp;
216-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
216+
var f32 = require( '@stdlib/number/float64/base/to-float32' );
217217
&nbsp;
218218
&nbsp;
219219
// MAIN //
@@ -246,8 +246,8 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
246246
var im1 = z1[ offsetZ1+strideZ1 ];
247247
var re2 = z2[ offsetZ2 ];
248248
var im2 = z2[ offsetZ2+strideZ2 ];
249-
out[ offsetOut ] = float64ToFloat32(re1*re2) - float64ToFloat32(im1*im2);
250-
out[ offsetOut+strideOut ] = float64ToFloat32(re1*im2) + float64ToFloat32(im1*re2);
249+
out[ offsetOut ] = f32(re1*re2) - f32(im1*im2);
250+
out[ offsetOut+strideOut ] = f32(re1*im2) + f32(im1*re2);
251251
return out;
252252
}
253253
&nbsp;
@@ -262,7 +262,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">com
262262
<div class='footer quiet pad2 space-top1 center small'>
263263
Code coverage generated by
264264
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
265-
at 2025-03-15T07:20:51.148Z
265+
at 2025-06-02T18:51:01.698Z
266266
</div>
267267
<script src="../../../../../prettify.js"></script>
268268
<script>

0 commit comments

Comments
 (0)