Skip to content

Commit 4bddd4c

Browse files
committed
Update artifacts
1 parent ff19fde commit 4bddd4c

File tree

7 files changed

+32
-32
lines changed

7 files changed

+32
-32
lines changed

lapack/base/dlarf1f/base.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -354,22 +354,22 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
354354
// MAIN //
355355
&nbsp;
356356
/**
357-
* Applies a real elementary reflector `H = I - tau * v * v ^ T` to a real M by N matrix `C`.
357+
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C`.
358358
*
359359
* ## Notes
360360
*
361-
* - `work` should have `N` indexed elements if side = `left` and `M` indexed elements if side = `right`.
362-
* - `V` should have `1 + (M-1) * abs(strideV)` indexed elements if side = `left` and `1 + (N-1) * abs(strideV)` indexed elements if side = `right`.
363-
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
361+
* - `work` should have `N` indexed elements if side = `'left'` and `M` indexed elements if side = `'right'`.
362+
* - `V` should have `1 + (M-1) * abs(strideV)` indexed elements if side = `'left'` and `1 + (N-1) * abs(strideV)` indexed elements if side = `'right'`.
363+
* - `C` is overwritten by `H * C` if side = `'left'` and `C * H` if side = `'right'`.
364364
*
365365
* @private
366-
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
366+
* @param {string} side - specifies the side of multiplication with `C`. Use `'left'` to form `H * C` and `'right'` to form `C * H`.
367367
* @param {NonNegativeInteger} M - number of rows in `C`
368368
* @param {NonNegativeInteger} N - number of columns in `C`
369-
* @param {Float64Array} V - the vector `v` in the representation of `H`
369+
* @param {Float64Array} V - the vector `v`
370370
* @param {integer} strideV - stride length for `V`
371371
* @param {NonNegativeInteger} offsetV - starting index for `V`
372-
* @param {number} tau - the value of `tau` in representation of `H`
372+
* @param {number} tau - scalar constant
373373
* @param {Float64Array} C - input matrix
374374
* @param {integer} strideC1 - stride of the first dimension of `C`
375375
* @param {integer} strideC2 - stride of the second dimension of `C`
@@ -454,7 +454,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
454454
<div class='footer quiet pad2 space-top1 center small'>
455455
Code coverage generated by
456456
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
457-
at 2025-08-12T06:01:18.065Z
457+
at 2025-08-19T11:27:16.693Z
458458
</div>
459459
<script src="../../../../prettify.js"></script>
460460
<script>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[409,409,100,40,40,100,3,3,100,409,409,100,"477c0eabb3c0a0dafc6bbe4d10a937f6aeb49442","2025-08-11 22:59:34 -0700"]
1+
[409,409,100,40,40,100,3,3,100,409,409,100,"851b6396fec05f533c6fd68d66bc41b33922f845","2025-08-19 16:55:07 +0530"]

lapack/base/dlarf1f/dlarf1f.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -305,21 +305,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
305305
// MAIN //
306306
&nbsp;
307307
/**
308-
* Applies a real elementary reflector `H = I - tau * v * v ^ T` to a real M by N matrix `C`.
308+
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C`.
309309
*
310310
* ## Notes
311311
*
312-
* - `work` should have `N` indexed elements if side = `left` and `M` indexed elements if side = `right`.
313-
* - `V` should have `1 + (M-1) * abs(incv)` indexed elements if side = `left` and `1 + (N-1) * abs(incv)` indexed elements if side = `right`.
314-
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
312+
* - `work` should have `N` indexed elements if side = `'left'` and `M` indexed elements if side = `'right'`.
313+
* - `V` should have `1 + (M-1) * abs(incv)` indexed elements if side = `'left'` and `1 + (N-1) * abs(incv)` indexed elements if side = `'right'`.
314+
* - `C` is overwritten by `H * C` if side = `'left'` and `C * H` if side = `'right'`.
315315
*
316316
* @param {string} order - storage layout
317-
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
317+
* @param {string} side - specifies the side of multiplication with `C`. Use `'left'` to form `H * C` and `'right'` to form `C * H`.
318318
* @param {NonNegativeInteger} M - number of rows in `C`
319319
* @param {NonNegativeInteger} N - number of columns in `C`
320-
* @param {Float64Array} V - the vector `v` in the representation of `H`
320+
* @param {Float64Array} V - the vector `v`
321321
* @param {integer} incv - stride length for `V`
322-
* @param {number} tau - the value of `tau` in representation of `H`
322+
* @param {number} tau - scalar constant
323323
* @param {Float64Array} C - input matrix
324324
* @param {PositiveInteger} LDC - stride of the first dimension of `C` (a.k.a., leading dimension of the matrix `C`)
325325
* @param {Float64Array} work - workspace array
@@ -382,7 +382,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
382382
<div class='footer quiet pad2 space-top1 center small'>
383383
Code coverage generated by
384384
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
385-
at 2025-08-12T06:01:18.065Z
385+
at 2025-08-19T11:27:16.693Z
386386
</div>
387387
<script src="../../../../prettify.js"></script>
388388
<script>

lapack/base/dlarf1f/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/dlarf1f/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-08-12T06:01:18.065Z
164+
at 2025-08-19T11:27:16.693Z
165165
</div>
166166
<script src="../../../../prettify.js"></script>
167167
<script>

lapack/base/dlarf1f/index.js.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,13 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
214214
'use strict';
215215
&nbsp;
216216
/**
217-
* LAPACK routine to apply a real elementary reflector `H = I - tau * v * v ^ T` to a real M by N matrix `C`.
217+
* LAPACK routine to apply a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C`.
218218
*
219219
* ## Notes
220220
*
221-
* - `work` should have `N` indexed elements if side = `left` and `M` indexed elements if side = `right`.
222-
* - `V` should have `1 + (M-1) * abs(incv)` indexed elements if side = `left` and `1 + (N-1) * abs(incv)` indexed elements if side = `right`.
223-
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
221+
* - `work` should have `N` indexed elements if side = `'left'` and `M` indexed elements if side = `'right'`.
222+
* - `V` should have `1 + (M-1) * abs(incv)` indexed elements if side = `'left'` and `1 + (N-1) * abs(incv)` indexed elements if side = `'right'`.
223+
* - `C` is overwritten by `H * C` if side = `'left'` and `C * H` if side = `'right'`.
224224
*
225225
* @module @stdlib/lapack/base/dlarf1f
226226
*
@@ -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-08-12T06:01:18.065Z
268+
at 2025-08-19T11:27:16.693Z
269269
</div>
270270
<script src="../../../../prettify.js"></script>
271271
<script>

lapack/base/dlarf1f/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-08-12T06:01:18.065Z
178+
at 2025-08-19T11:27:16.693Z
179179
</div>
180180
<script src="../../../../prettify.js"></script>
181181
<script>

lapack/base/dlarf1f/ndarray.js.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -248,21 +248,21 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
248248
// MAIN //
249249
&nbsp;
250250
/**
251-
* Applies a real elementary reflector `H = I - tau * v * v ^ T` to a real M by N matrix `C`.
251+
* Applies a real elementary reflector `H = I - tau * v * v^T` to a real M by N matrix `C`.
252252
*
253253
* ## Notes
254254
*
255-
* - `work` should have `N` indexed elements if side = `left` and `M` indexed elements if side = `right`.
256-
* - `V` should have `1 + (M-1) * abs(strideV)` indexed elements if side = `left` and `1 + (N-1) * abs(strideV)` indexed elements if side = `right`.
257-
* - `C` is overwritten by `H * C` if side = `left` and `C * H` if side = `right`.
255+
* - `work` should have `N` indexed elements if side = `'left'` and `M` indexed elements if side = `'right'`.
256+
* - `V` should have `1 + (M-1) * abs(strideV)` indexed elements if side = `'left'` and `1 + (N-1) * abs(strideV)` indexed elements if side = `'right'`.
257+
* - `C` is overwritten by `H * C` if side = `'left'` and `C * H` if side = `'right'`.
258258
*
259-
* @param {string} side - specifies the side of multiplication with `C`. Use `left` to form `H * C` and `right` to from `C * H`.
259+
* @param {string} side - specifies the side of multiplication with `C`. Use `'left'` to form `H * C` and `'right'` to form `C * H`.
260260
* @param {NonNegativeInteger} M - number of rows in `C`
261261
* @param {NonNegativeInteger} N - number of columns in `C`
262-
* @param {Float64Array} V - the vector `v` in the representation of `H`
262+
* @param {Float64Array} V - the vector `v`
263263
* @param {integer} strideV - stride length for `V`
264264
* @param {NonNegativeInteger} offsetV - starting index for `V`
265-
* @param {number} tau - the value of `tau` in representation of `H`
265+
* @param {number} tau - scalar constant
266266
* @param {Float64Array} C - input matrix
267267
* @param {integer} strideC1 - stride of the first dimension of `C`
268268
* @param {integer} strideC2 - stride of the second dimension of `C`
@@ -301,7 +301,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">lapack
301301
<div class='footer quiet pad2 space-top1 center small'>
302302
Code coverage generated by
303303
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
304-
at 2025-08-12T06:01:18.065Z
304+
at 2025-08-19T11:27:16.693Z
305305
</div>
306306
<script src="../../../../prettify.js"></script>
307307
<script>

0 commit comments

Comments
 (0)