@@ -293,29 +293,29 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
293293* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
294294* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
295295* @param {number} alpha - scalar constant
296- * @param {Float64Array } x - first input vector
296+ * @param {Float32Array } x - first input vector
297297* @param {integer} strideX - `x` stride length
298- * @param {Float64Array } y - second input vector
298+ * @param {Float32Array } y - second input vector
299299* @param {integer} strideY - `y` stride length
300- * @param {Float64Array } A - input matrix
300+ * @param {Float32Array } A - input matrix
301301* @param {integer} LDA - stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
302302* @throws {TypeError} first argument must be a valid order
303303* @throws {TypeError} second argument must specify whether to reference the lower or upper triangular matrix
304304* @throws {RangeError} third argument must be a nonnegative integer
305305* @throws {RangeError} sixth argument must be non-zero
306306* @throws {RangeError} eighth argument must be non-zero
307307* @throws {RangeError} tenth argument must be a valid stride
308- * @returns {Float64Array } `A`
308+ * @returns {Float32Array } `A`
309309*
310310* @example
311- * var Float64Array = require( '@stdlib/array/float64 ' );
311+ * var Float32Array = require( '@stdlib/array/float32 ' );
312312*
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 ] ]
314- * var x = new Float64Array ( [ 1.0, 2.0, 3.0 ] );
315- * var y = new Float64Array ( [ 1.0, 2.0, 3.0 ] );
313+ * var A = new Float32Array ( [ 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 ] ]
314+ * var x = new Float32Array ( [ 1.0, 2.0, 3.0 ] );
315+ * var y = new Float32Array ( [ 1.0, 2.0, 3.0 ] );
316316*
317317* ssyr2( 'row-major', 'upper', 3, 1.0, x, 1, y, 1, A, 3 );
318- * // A => <Float64Array >[ 3.0, 6.0, 9.0, 2.0, 9.0, 14.0, 3.0, 2.0, 19.0 ]
318+ * // A => <Float32Array >[ 3.0, 6.0, 9.0, 2.0, 9.0, 14.0, 3.0, 2.0, 19.0 ]
319319*/
320320function ssyr2( order, uplo, N, alpha, x, strideX, y, strideY, A, LDA ) {
321321 if ( !isLayout( order ) ) {
@@ -355,7 +355,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">blas/b
355355 < div class ='footer quiet pad2 space-top1 center small '>
356356 Code coverage generated by
357357 < a href ="https://istanbul.js.org/ " target ="_blank " rel ="noopener noreferrer "> istanbul</ a >
358- at 2025-08-17T14:54:41.053Z
358+ at 2025-08-19T13:46:10.494Z
359359 </ div >
360360 < script src ="../../../../prettify.js "> </ script >
361361 < script >
0 commit comments