@@ -25,7 +25,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
2525 < div class ='fl pad1y space-right2 '>
2626 < span class ="strong "> 100% </ span >
2727 < span class ="quiet "> Statements</ span >
28- < span class ='fraction '> 94/94 </ span >
28+ < span class ='fraction '> 95/95 </ span >
2929 </ div >
3030
3131
@@ -46,7 +46,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
4646 < div class ='fl pad1y space-right2 '>
4747 < span class ="strong "> 100% </ span >
4848 < span class ="quiet "> Lines</ span >
49- < span class ='fraction '> 94/94 </ span >
49+ < span class ='fraction '> 95/95 </ span >
5050 </ div >
5151
5252
@@ -157,7 +157,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
157157< a name ='L92 '> </ a > < a href ='#L92 '> 92</ a >
158158< a name ='L93 '> </ a > < a href ='#L93 '> 93</ a >
159159< a name ='L94 '> </ a > < a href ='#L94 '> 94</ a >
160- < a name ='L95 '> </ a > < a href ='#L95 '> 95</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 2x</ span >
160+ < a name ='L95 '> </ a > < a href ='#L95 '> 95</ a >
161+ < a name ='L96 '> </ a > < a href ='#L96 '> 96</ a > </ td > < td class ="line-coverage quiet "> < span class ="cline-any cline-yes "> 2x</ span >
162+ < span class ="cline-any cline-yes "> 2x</ span >
161163< span class ="cline-any cline-yes "> 2x</ span >
162164< span class ="cline-any cline-yes "> 2x</ span >
163165< span class ="cline-any cline-yes "> 2x</ span >
@@ -288,9 +290,9 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
288290* Performs the symmetric rank 2 operation `A = α*x*y^T + α*y*x^T + A` where `α` is a scalar, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
289291*
290292* @param {string} order - storage layout
291- * @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
293+ * @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
292294* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
293- * @param {number} alpha - scalar
295+ * @param {number} alpha - scalar constant
294296* @param {Float64Array} x - first input vector
295297* @param {integer} strideX - `x` stride length
296298* @param {Float64Array} y - second input vector
@@ -301,18 +303,19 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
301303* @throws {TypeError} second argument must specify whether to reference the lower or upper triangular matrix
302304* @throws {RangeError} third argument must be a nonnegative integer
303305* @throws {RangeError} sixth argument must be non-zero
304- * @throws {RangeError} eighth argument must be a valid stride
306+ * @throws {RangeError} eighth argument must be non-zero
307+ * @throws {RangeError} tenth argument must be a valid stride
305308* @returns {Float64Array} `A`
306309*
307310* @example
308311* var Float64Array = require( '@stdlib/array/float64' );
309312*
310- * var A = new Float64Array( [ 1.0, 2.0, 3.0, 0 .0, 1.0, 2.0, 0 .0, 0 .0, 1.0 ] ); // => [ [ 1.0, 2.0, 3.0 ], [ 0 .0, 1.0, 2.0 ], [ 0 .0, 0 .0, 1.0 ] ]
313+ * var A = new Float64Array( [ 1.0, 2.0, 3.0, 2 .0, 1.0, 2.0, 3 .0, 2 .0, 1.0 ] ); // => [ [ 1.0, 2.0, 3.0 ], [ 2 .0, 1.0, 2.0 ], [ 3 .0, 2 .0, 1.0 ] ]
311314* var x = new Float64Array( [ 1.0, 2.0, 3.0 ] );
312315* var y = new Float64Array( [ 1.0, 2.0, 3.0 ] );
313316*
314317* dsyr2( 'row-major', 'upper', 3, 1.0, x, 1, y, 1, A, 3 );
315- * // A => <Float64Array>[ 3.0, 6.0, 9.0, 0 .0, 9.0, 14.0, 0 .0, 0 .0, 19.0 ]
318+ * // A => <Float64Array>[ 3.0, 6.0, 9.0, 2 .0, 9.0, 14.0, 3 .0, 2 .0, 19.0 ]
316319*/
317320function dsyr2( order, uplo, N, alpha, x, strideX, y, strideY, A, LDA ) {
318321 if ( !isLayout( order ) ) {
@@ -352,7 +355,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
352355 < div class ='footer quiet pad2 space-top1 center small '>
353356 Code coverage generated by
354357 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
355- at 2025-06-29T18:40:30.189Z
358+ at 2025-06-30T11:56:26.945Z
356359 </ div >
357360 < script src ="../../../../prettify.js "> </ script >
358361 < script >
0 commit comments