Skip to content

Commit 408c934

Browse files
committed
Update artifacts
1 parent ab8bdef commit 408c934

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

blas/base/icamax/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[231,231,100,15,15,100,2,2,100,231,231,100,"ea43236efc1a2f5469299ac629614c05f09a6d52","2025-02-19 23:34:42 +0530"]
1+
[231,231,100,15,15,100,2,2,100,231,231,100,"61c28cf7fb91a865d812b735e04e4422ca35e486","2025-02-20 23:08:24 +0530"]

blas/base/icamax/icamax.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -201,21 +201,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
201201
* Finds the index of the first element having maximum |Re(.)| + |Im(.)|.
202202
*
203203
* @param {PositiveInteger} N - number of indexed elements
204-
* @param {Float64Array} x - input array
205-
* @param {integer} strideX - `x` stride length
204+
* @param {Float64Array} cx - input array
205+
* @param {integer} stride - `cx` stride length
206206
* @returns {integer} index value
207207
*
208208
* @example
209209
* var Complex64Array = require( '@stdlib/array/complex64' );
210210
*
211-
* var x = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
211+
* var cx = new Complex64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0 ] );
212212
*
213-
* var icx = icamax( x.length, x, 1 );
213+
* var idx = icamax( cx.length, cx, 1 );
214214
* // returns 3
215215
*/
216-
function icamax( N, x, strideX ) {
217-
var ox = stride2offset( N, strideX );
218-
return ndarray( N, x, strideX, ox );
216+
function icamax( N, cx, stride ) {
217+
var ox = stride2offset( N, stride );
218+
return ndarray( N, cx, stride, ox );
219219
}
220220
&nbsp;
221221
&nbsp;
@@ -229,7 +229,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
229229
<div class='footer quiet pad2 space-top1 center small'>
230230
Code coverage generated by
231231
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
232-
at 2025-02-19T18:05:44.986Z
232+
at 2025-02-20T17:39:17.604Z
233233
</div>
234234
<script src="../../../../prettify.js"></script>
235235
<script>

blas/base/icamax/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1><a href="../../../../index.html">All files</a> blas/base/icamax/lib</h1>
146146
<div class='footer quiet pad2 space-top1 center small'>
147147
Code coverage generated by
148148
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
149-
at 2025-02-19T18:05:44.986Z
149+
at 2025-02-20T17:39:17.604Z
150150
</div>
151151
<script src="../../../../prettify.js"></script>
152152
<script>

blas/base/icamax/index.js.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
228228
* var Complex64Array = require( '@stdlib/array/complex64' );
229229
* var icamax = require( '@stdlib/blas/base/icamax' );
230230
*
231-
* var x = new Float64Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
231+
* var cx = new Float64Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
232232
*
233-
* var icx = icamax( x.length, x, 1 );
233+
* var idx = icamax( cx.length, cx, 1 );
234234
* // returns 1
235235
*
236236
* @example
@@ -239,7 +239,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
239239
*
240240
* var cx = new Complex64Array( [ -2.0, 1.0, 3.0, -5.0, 4.0, 0.0, -1.0, -3.0 ] );
241241
*
242-
* var icx = icamax( cx.length, cx, 1, 0 );
242+
* var idx = icamax.ndarray( cx.length, cx, 1, 0 );
243243
* // returns 1
244244
*/
245245
&nbsp;
@@ -274,7 +274,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
274274
<div class='footer quiet pad2 space-top1 center small'>
275275
Code coverage generated by
276276
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
277-
at 2025-02-19T18:05:44.986Z
277+
at 2025-02-20T17:39:17.604Z
278278
</div>
279279
<script src="../../../../prettify.js"></script>
280280
<script>

blas/base/icamax/main.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
175175
<div class='footer quiet pad2 space-top1 center small'>
176176
Code coverage generated by
177177
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
178-
at 2025-02-19T18:05:44.986Z
178+
at 2025-02-20T17:39:17.604Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

blas/base/icamax/ndarray.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
295295
<div class='footer quiet pad2 space-top1 center small'>
296296
Code coverage generated by
297297
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
298-
at 2025-02-19T18:05:44.986Z
298+
at 2025-02-20T17:39:17.604Z
299299
</div>
300300
<script src="../../../../prettify.js"></script>
301301
<script>

0 commit comments

Comments
 (0)