Skip to content

Commit 3c44508

Browse files
committed
Update artifacts
1 parent 70ff2f4 commit 3c44508

File tree

7 files changed

+48
-48
lines changed

7 files changed

+48
-48
lines changed

lapack/base/dlascl/base.js.html

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1170,7 +1170,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
11701170
<span class="cline-any cline-yes">12x</span>
11711171
<span class="cline-any cline-yes">12x</span>
11721172
<span class="cline-any cline-yes">12x</span>
1173-
<span class="cline-any cline-yes">84x</span>
1173+
<span class="cline-any cline-yes">12x</span>
11741174
<span class="cline-any cline-yes">84x</span>
11751175
<span class="cline-any cline-yes">84x</span>
11761176
<span class="cline-any cline-yes">84x</span>
@@ -1220,7 +1220,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
12201220
// FUNCTIONS //
12211221
&nbsp;
12221222
/**
1223-
* Multiplies a real M by N general matrix `A` by a real scalar `mul`.
1223+
* Multiplies a double-precision floating-point M-by-N general matrix `A` by a double-precision floating-point scalar `mul`.
12241224
*
12251225
* @private
12261226
* @param {NonNegativeInteger} M - number of rows in matrix `A`
@@ -1257,7 +1257,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
12571257
da0 = o.sx[ 0 ];
12581258
da1 = o.sx[ 1 ] - ( S0 * o.sx[ 0 ] );
12591259
&nbsp;
1260-
// Set the pointers to the first indexed elements in the respective matrices...
1260+
// Set the pointer to the first indexed element:
12611261
ia = offsetA;
12621262
&nbsp;
12631263
// Iterate over the matrix dimensions...
@@ -1271,7 +1271,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
12711271
}
12721272
&nbsp;
12731273
/**
1274-
* Multiplies a real M by N upper triangular matrix `A` by a real scalar `mul`.
1274+
* Multiplies a double-precision floating-point M-by-N upper triangular matrix `A` by a real scalar `mul`.
12751275
*
12761276
* @private
12771277
* @param {NonNegativeInteger} M - number of rows in matrix `A`
@@ -1329,7 +1329,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
13291329
}
13301330
&nbsp;
13311331
/**
1332-
* Multiplies a real M by N lower triangular matrix `A` by a real scalar `mul`.
1332+
* Multiplies a double-precision floating-point M-by-N lower triangular matrix `A` by a real scalar `mul`.
13331333
*
13341334
* @private
13351335
* @param {NonNegativeInteger} M - number of rows in matrix `A`
@@ -1387,7 +1387,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
13871387
}
13881388
&nbsp;
13891389
/**
1390-
* Multiplies a real M by N upper Hessenberg matrix `A` by a real scalar `mul`.
1390+
* Multiplies a double-precision floating-point M-by-N upper Hessenberg matrix `A` by a real scalar `mul`.
13911391
*
13921392
* @private
13931393
* @param {NonNegativeInteger} M - number of rows in matrix `A`
@@ -1446,10 +1446,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
14461446
}
14471447
&nbsp;
14481448
/**
1449-
* Multiplies a real M by N symmetric banded lower matrix `A` by a real scalar `mul`.
1449+
* Multiplies a double-precision floating-point M-by-N symmetric banded lower matrix `A` by a real scalar `mul`.
14501450
*
14511451
* @private
1452-
* @param {NonNegativeInteger} KL - lower band width of `A`
1452+
* @param {NonNegativeInteger} KL - lower bandwidth of `A` (i.e., number of sub-diagonals)
14531453
* @param {NonNegativeInteger} M - number of rows in matrix `A`
14541454
* @param {NonNegativeInteger} N - number of columns in matrix `A`
14551455
* @param {Float64Array} A - input matrix
@@ -1510,10 +1510,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
15101510
}
15111511
&nbsp;
15121512
/**
1513-
* Multiplies a real M by N symmetric banded upper matrix `A` by a real scalar `mul`.
1513+
* Multiplies a double-precision floating-point M-by-N symmetric banded upper matrix `A` by a real scalar `mul`.
15141514
*
15151515
* @private
1516-
* @param {NonNegativeInteger} KU - upper band width of `A`
1516+
* @param {NonNegativeInteger} KU - upper bandwidth of `A`
15171517
* @param {NonNegativeInteger} M - number of rows in matrix `A`
15181518
* @param {NonNegativeInteger} N - number of columns in matrix `A`
15191519
* @param {Float64Array} A - input matrix
@@ -1570,11 +1570,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
15701570
}
15711571
&nbsp;
15721572
/**
1573-
* Multiplies a real M by N banded matrix `A` by a real scalar `mul`.
1573+
* Multiplies a double-precision floating-point M-by-N banded matrix `A` by a real scalar `mul`.
15741574
*
15751575
* @private
1576-
* @param {NonNegativeInteger} KL - lower band width of `A`
1577-
* @param {NonNegativeInteger} KU - upper band width of `A`
1576+
* @param {NonNegativeInteger} KL - lower bandwidth of `A`
1577+
* @param {NonNegativeInteger} KU - upper bandwidth of `A`
15781578
* @param {NonNegativeInteger} M - number of rows in matrix `A`
15791579
* @param {NonNegativeInteger} N - number of columns in matrix `A`
15801580
* @param {Float64Array} A - input matrix
@@ -1630,13 +1630,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
16301630
// MAIN //
16311631
&nbsp;
16321632
/**
1633-
* Multiplies a real M by N matrix `A` by a real scalar `CTO/CFROM`.
1633+
* Multiplies a double-precision floating-point M-by-N matrix `A` by a double-precision floating-point scalar.
16341634
*
16351635
* @param {string} type - specifies the type of matrix `A`
1636-
* @param {NonNegativeInteger} KL - lower band width of `A`. Referenced only if type is `symmetric-banded-lower` or `banded`.
1637-
* @param {NonNegativeInteger} KU - upper band width of `A`. Referenced only if type is `symmetric-banded-upper` or `banded`.
1638-
* @param {number} CFROM - the matrix `A` is multiplied by `CTO / CFROM`
1639-
* @param {number} CTO - the matrix `A` is multiplied by `CTO / CFROM`
1636+
* @param {NonNegativeInteger} KL - lower bandwidth of `A`. Referenced only if type is `symmetric-banded-lower` or `banded`.
1637+
* @param {NonNegativeInteger} KU - upper bandwidth of `A`. Referenced only if type is `symmetric-banded-upper` or `banded`.
1638+
* @param {number} gamma - the matrix `A` is multiplied by `β/γ`
1639+
* @param {number} beta - the matrix `A` is multiplied by `β/γ`
16401640
* @param {NonNegativeInteger} M - number of rows in matrix `A`
16411641
* @param {NonNegativeInteger} N - number of columns in matrix `A`
16421642
* @param {Float64Array} A - input matrix
@@ -1653,7 +1653,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
16531653
* dlascl( 'general', 0, 0, 1.0, 2.0, 3, 2, A, 2, 1, 0 );
16541654
* // A =&gt; &lt;Float64Array&gt;[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0 ]
16551655
*/
1656-
function dlascl( type, KL, KU, CFROM, CTO, M, N, A, strideA1, strideA2, offsetA ) { // eslint-disable-line max-params
1656+
function dlascl( type, KL, KU, gamma, beta, M, N, A, strideA1, strideA2, offsetA ) { // eslint-disable-line max-params
16571657
var cfromc;
16581658
var cfrom1;
16591659
var isrm;
@@ -1668,12 +1668,12 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
16681668
&nbsp;
16691669
done = false;
16701670
&nbsp;
1671-
cfromc = CFROM;
1672-
ctoc = CTO;
1671+
cfromc = gamma;
1672+
ctoc = beta;
16731673
isrm = isRowMajor( [ strideA1, strideA2 ] );
16741674
&nbsp;
16751675
while ( !done ) {
1676-
cfrom1 = CTO * smlnum;
1676+
cfrom1 = beta * smlnum;
16771677
if ( cfrom1 === cfromc ) <span class="branch-0 cbranch-no" title="branch not covered" >{</span>
16781678
<span class="cstat-no" title="statement not covered" > // cfromc is Infinity, multiply by a correctly signed zero for finite ctoc or NaN</span>
16791679
<span class="cstat-no" title="statement not covered" > mul = ctoc / cfromc;</span>
@@ -1726,8 +1726,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
17261726
}
17271727
if ( type === 'banded' ) {
17281728
scaleBanded( KL, KU, M, N, A, strideA1, strideA2, offsetA, mul );
1729-
continue;
17301729
}
1730+
continue;
17311731
}
17321732
&nbsp;
17331733
return A;
@@ -1744,7 +1744,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
17441744
<div class='footer quiet pad2 space-top1 center small'>
17451745
Code coverage generated by
17461746
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
1747-
at 2025-07-09T08:27:04.901Z
1747+
at 2025-08-19T12:25:56.089Z
17481748
</div>
17491749
<script src="../../../../prettify.js"></script>
17501750
<script>

lapack/base/dlascl/coverage.ndjson

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[802,818,98.044,92,98,93.8776,10,10,100,802,818,98.044,"bd9df6bd23bb9ea023ae8c9df27152a654217a42","2025-07-09 08:23:40 +0000"]
1+
[802,818,98.044,92,98,93.8776,10,10,100,802,818,98.044,"fefbdefd85a501cc044128d0f30c3b96adaa6d5e","2025-08-19 17:53:42 +0530"]

lapack/base/dlascl/dlascl.js.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -298,20 +298,20 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
298298
// MAIN //
299299
&nbsp;
300300
/**
301-
* Multiplies a real M by N matrix `A` by a real scalar `CTO/CFROM`.
301+
* Multiplies a double-precision floating-point M-by-N matrix `A` by a double-precision floating-point scalar.
302302
*
303303
* @param {string} order - storage layout
304-
* @param {string} type - specifies the type of matrix `A`
305-
* @param {NonNegativeInteger} KL - lower band width of `A`. Referenced only if type is `symmetric-banded-lower` or `banded`.
306-
* @param {NonNegativeInteger} KU - upper band width of `A`. Referenced only if type is `symmetric-banded-upper` or `banded`.
307-
* @param {number} CFROM - the matrix `A` is multiplied by `CTO / CFROM`
308-
* @param {number} CTO - the matrix `A` is multiplied by `CTO / CFROM`
304+
* @param {string} type - specifies the type of matrix `A`. Must be one of the following: `'general'`, `'upper'`, `'lower'`, `'upper-hessenberg'`, `'symmetric-banded-lower'`, `'symmetric-banded-upper'`, or `'banded'`.
305+
* @param {NonNegativeInteger} KL - lower bandwidth of `A` (i.e., the number of sub-diagonals). Referenced only if type is `'symmetric-banded-lower'` or `'banded'`.
306+
* @param {NonNegativeInteger} KU - upper bandwidth of `A` (i.e., the number of super-diagonals). Referenced only if type is `'symmetric-banded-upper'` or `'banded'`.
307+
* @param {number} gamma - the matrix `A` is multiplied by `β/γ`
308+
* @param {number} beta - the matrix `A` is multiplied by `β/γ`
309309
* @param {NonNegativeInteger} M - number of rows in matrix `A`
310310
* @param {NonNegativeInteger} N - number of columns in matrix `A`
311311
* @param {Float64Array} A - input matrix
312312
* @param {PositiveInteger} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
313313
* @throws {TypeError} first argument must be a valid order
314-
* @throws {RangeError} fourth argument must be greater than or equal to max(1,N)
314+
* @throws {RangeError} fifth argument must be greater than or equal to max(1,N)
315315
* @returns {Float64Array} scaled matrix `A`
316316
*
317317
* @example
@@ -322,7 +322,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
322322
* dlascl( 'row-major', 'general', 0, 0, 1.0, 2.0, 3, 2, A, 2 );
323323
* // A =&gt; &lt;Float64Array&gt;[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0 ]
324324
*/
325-
function dlascl( order, type, KL, KU, CFROM, CTO, M, N, A, LDA ) {
325+
function dlascl( order, type, KL, KU, gamma, beta, M, N, A, LDA ) {
326326
var sa1;
327327
var sa2;
328328
var s;
@@ -359,7 +359,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
359359
sa2 = 1;
360360
}
361361
&nbsp;
362-
return base( type, KL, KU, CFROM, CTO, M, N, A, sa1, sa2, 0 );
362+
return base( type, KL, KU, gamma, beta, M, N, A, sa1, sa2, 0 );
363363
}
364364
&nbsp;
365365
&nbsp;
@@ -373,7 +373,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
373373
<div class='footer quiet pad2 space-top1 center small'>
374374
Code coverage generated by
375375
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
376-
at 2025-07-09T08:27:04.901Z
376+
at 2025-08-19T12:25:56.089Z
377377
</div>
378378
<script src="../../../../prettify.js"></script>
379379
<script>

lapack/base/dlascl/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> lapack/base/dlascl/lib</h1>
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-07-09T08:27:04.901Z
164+
at 2025-08-19T12:25:56.089Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

lapack/base/dlascl/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
202202
'use strict';
203203
&nbsp;
204204
/**
205-
* LAPACK routine to multiply a real M by N matrix `A` by a real scalar `CTO/CFROM`.
205+
* LAPACK routine to multiply a double-precision floating-point M-by-N matrix `A` by a double-precision floating-point scalar.
206206
*
207207
* @module @stdlib/lapack/base/dlascl
208208
*
@@ -247,7 +247,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
247247
<div class='footer quiet pad2 space-top1 center small'>
248248
Code coverage generated by
249249
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
250-
at 2025-07-09T08:27:04.901Z
250+
at 2025-08-19T12:25:56.089Z
251251
</div>
252252
<script src="../../../../prettify.js"></script>
253253
<script>

lapack/base/dlascl/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">lapack
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-07-09T08:27:04.901Z
178+
at 2025-08-19T12:25:56.089Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

lapack/base/dlascl/ndarray.js.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -222,13 +222,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
222222
// MAIN //
223223
&nbsp;
224224
/**
225-
* Multiplies a real M by N matrix `A` by a real scalar `CTO/CFROM` using alternative indexing semantics.
225+
* Multiplies a double-precision floating-point M-by-N matrix `A` by a double-precision floating-point scalar using alternative indexing semantics.
226226
*
227-
* @param {string} type - specifies the type of matrix `A`
228-
* @param {NonNegativeInteger} KL - lower band width of `A`. Referenced only if type is `symmetric-banded-lower` or `banded`.
229-
* @param {NonNegativeInteger} KU - upper band width of `A`. Referenced only if type is `symmetric-banded-upper` or `banded`.
230-
* @param {number} CFROM - the matrix `A` is multiplied by `CTO / CFROM`
231-
* @param {number} CTO - the matrix `A` is multiplied by `CTO / CFROM`
227+
* @param {string} type - specifies the type of matrix `A`. Must be one of the following: `'general'`, `'upper'`, `'lower'`, `'upper-hessenberg'`, `'symmetric-banded-lower'`, `'symmetric-banded-upper'`, or `'banded'`.
228+
* @param {NonNegativeInteger} KL - lower bandwidth of `A` (i.e., the number of sub-diagonals). Referenced only if type is `'symmetric-banded-lower'` or `'banded'`.
229+
* @param {NonNegativeInteger} KU - upper bandwidth of `A` (i.e., the number of super-diagonals). Referenced only if type is `'symmetric-banded-upper'` or `'banded'`.
230+
* @param {number} gamma - the matrix `A` is multiplied by `β/γ`
231+
* @param {number} beta - the matrix `A` is multiplied by `β/γ`
232232
* @param {NonNegativeInteger} M - number of rows in matrix `A`
233233
* @param {NonNegativeInteger} N - number of columns in matrix `A`
234234
* @param {Float64Array} A - input matrix
@@ -247,11 +247,11 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
247247
* dlascl( 'general', 0, 0, 1.0, 2.0, 3, 2, A, 2, 1, 0 );
248248
* // A =&gt; &lt;Float64Array&gt;[ 2.0, 4.0, 6.0, 8.0, 10.0, 12.0 ]
249249
*/
250-
function dlascl( type, KL, KU, CFROM, CTO, M, N, A, strideA1, strideA2, offsetA ) { // eslint-disable-line max-len, max-params
250+
function dlascl( type, KL, KU, gamma, beta, M, N, A, strideA1, strideA2, offsetA ) { // eslint-disable-line max-len, max-params
251251
if ( type !== 'general' &amp;&amp; type !== 'upper' &amp;&amp; type !== 'lower' &amp;&amp; type !== 'upper-hessenberg' &amp;&amp; type !== 'symmetric-banded-lower' &amp;&amp; type !== 'symmetric-banded-upper' &amp;&amp; type !== 'banded' ) {
252252
throw new TypeError( format( 'invalid argument. First argument must be a valid matrix type. Value: `%s`.', type ) );
253253
}
254-
return base( type, KL, KU, CFROM, CTO, M, N, A, strideA1, strideA2, offsetA ); // eslint-disable-line max-len
254+
return base( type, KL, KU, gamma, beta, M, N, A, strideA1, strideA2, offsetA ); // eslint-disable-line max-len
255255
}
256256
&nbsp;
257257
&nbsp;
@@ -265,7 +265,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
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-07-09T08:27:04.901Z
268+
at 2025-08-19T12:25:56.089Z
269269
</div>
270270
<script src="../../../../prettify.js"></script>
271271
<script>

0 commit comments

Comments
 (0)