diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/README.md b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/README.md
new file mode 100644
index 000000000000..647268f81497
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/README.md
@@ -0,0 +1,127 @@
+
+
+# ssyr
+
+> Perform the symmetric rank 1 operation `A = alpha*x*x^T + A`.
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var ssyr = require( '@stdlib/blas/base/ndarray/ssyr' );
+```
+
+#### ssyr( arrays )
+
+Performs the symmetric rank 1 operation `A = alpha*x*x^T + A`, where `alpha` is a scalar, `x` is an `N` element ndarray, and `A` is an `N` by `N` symmetric matrix.
+
+```javascript
+var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
+var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var Float32Array = require( '@stdlib/array/float32' );
+
+var x = new Float32Vector( [ 1.0, 2.0, 3.0 ] );
+var A = new ndarray( 'float32', new Float32Array( [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ] ), [ 3, 3 ], [ 3, 1 ], 0, 'row-major' );
+
+var alpha = scalar2ndarray( 2.0, {
+ 'dtype': 'float32'
+});
+
+var out = ssyr( [ x, A, alpha ] );
+// returns [ [ 3.0, 6.0, 9.0 ], [ 2.0, 9.0, 14.0 ], [ 3.0, 2.0, 19.0 ] ]
+
+var bool = ( out === A );
+// returns true
+```
+
+The function has the following parameters:
+
+- **arrays**: array-like object containing the following ndarrays:
+
+ - a one-dimensional input ndarray.
+ - a two-dimensional input/output ndarray.
+ - a zero-dimensional ndarray containing a scalar constant.
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var Float32Array = require( '@stdlib/array/float32' );
+var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
+var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var ssyr = require( '@stdlib/blas/base/ndarray/ssyr' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+
+var x = new Float32Vector( discreteUniform( 3, 0, 10, opts ) );
+var A = new ndarray( 'float32', new Float32Array( discreteUniform( 9, 0, 10, opts ) ), [ 3, 3 ], [ 3, 1 ], 0, 'row-major' );
+
+var alpha = scalar2ndarray( 1.0, opts );
+
+var out = ssyr( [ x, A, alpha ] );
+console.log( ndarray2array( out ) );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/benchmark/benchmark.js
new file mode 100644
index 000000000000..10164f32db30
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/benchmark/benchmark.js
@@ -0,0 +1,112 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var bench = require( '@stdlib/bench' );
+var uniform = require( '@stdlib/random/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
+var format = require( '@stdlib/string/format' );
+var pkg = require( './../package.json' ).name;
+var ssyr = require( './../lib' );
+
+
+// VARIABLES //
+
+var options = {
+ 'dtype': 'float32'
+};
+
+
+// FUNCTIONS //
+
+/**
+* Creates a benchmark function.
+*
+* @private
+* @param {PositiveInteger} len - array length
+* @returns {Function} benchmark function
+*/
+function createBenchmark( len ) {
+ var alpha;
+ var x;
+ var A;
+
+ x = uniform( [ len ], -100.0, 100.0, options );
+ A = uniform( [ len, len ], -100.0, 100.0, options );
+
+ alpha = scalar2ndarray( 1.0, options );
+
+ return benchmark;
+
+ /**
+ * Benchmark function.
+ *
+ * @private
+ * @param {Benchmark} b - benchmark instance
+ */
+ function benchmark( b ) {
+ var z;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ z = ssyr( [ x, A, alpha ] );
+ if ( typeof z !== 'object' ) {
+ b.fail( 'should return an ndarray' );
+ }
+ }
+ b.toc();
+ if ( isnanf( z.get( 0, i%len ) ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ b.pass( 'benchmark finished' );
+ b.end();
+ }
+}
+
+
+// MAIN //
+
+/**
+* Main execution sequence.
+*
+* @private
+*/
+function main() {
+ var len;
+ var min;
+ var max;
+ var f;
+ var i;
+
+ min = 1; // 10^min
+ max = 3; // 10^max
+
+ for ( i = min; i <= max; i++ ) {
+ len = pow( 10, i );
+ f = createBenchmark( len );
+ bench( format( '%s:len=%d', pkg, len ), f );
+ }
+}
+
+main();
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/repl.txt b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/repl.txt
new file mode 100644
index 000000000000..bb90d30fe77d
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/repl.txt
@@ -0,0 +1,36 @@
+
+{{alias}}( arrays )
+ Performs the symmetric rank 1 operation `A = alpha*x*x^T + A`, where
+ `alpha` is a scalar, `x` is an `N` element ndarray, and `A` is an
+ `N` by `N` symmetric matrix.
+
+ Parameters
+ ----------
+ arrays: ArrayLikeObject
+ Array-like object containing the following ndarrays:
+
+ - a one-dimensional input ndarray.
+ - a two-dimensional input/output ndarray.
+ - a zero-dimensional ndarray containing a scalar constant.
+
+ Returns
+ -------
+ out: ndarray
+ Output ndarray.
+
+ Examples
+ --------
+ > var x = new {{alias:@stdlib/ndarray/vector/float32}}( [ 1.0, 2.0 ] );
+ > var buf = new {{alias:@stdlib/array/float32}}( [ 1.0, 2.0, 2.0, 1.0 ] );
+ > var sh = [ 2, 2 ];
+ > var st = [ 2, 1 ];
+ > var A = new {{alias:@stdlib/ndarray/base/ctor}}( 'float32', buf, sh, st, 0, 'row-major' );
+ > var alpha = {{alias:@stdlib/ndarray/from-scalar}}( 2.0, { 'dtype': 'float32' });
+
+ > {{alias}}( [ x, A, alpha ] );
+ > A
+ [ [ 3.0, 6.0 ], [ 2.0, 9.0 ] ]
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/types/index.d.ts
new file mode 100644
index 000000000000..2590694b1c1d
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/types/index.d.ts
@@ -0,0 +1,63 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+// TypeScript Version: 4.1
+
+///
+
+import { float32ndarray } from '@stdlib/types/ndarray';
+
+/**
+* Performs the symmetric rank 1 operation `A = alpha*x*x^T + A`, where `alpha` is a scalar, `x` is an `N` element ndarray, and `A` is an `N` by `N` symmetric matrix.
+*
+* ## Notes
+*
+* - The function expects the following ndarrays:
+*
+* - a one-dimensional input ndarray.
+* - a two-dimensional input/output ndarray.
+* - a zero-dimensional ndarray containing a scalar constant.
+*
+* @param arrays - array-like object containing ndarrays
+* @returns output ndarray
+*
+* @example
+* var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
+* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
+* var ndarray = require( '@stdlib/ndarray/base/ctor' );
+* var Float32Array = require( '@stdlib/array/float32' );
+*
+* var x = new Float32Vector( [ 1.0, 2.0, 3.0 ] );
+* var A = new ndarray( 'float32', new Float32Array( [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ] ), [ 3, 3 ], [ 3, 1 ], 0, 'row-major' );
+*
+* var alpha = scalar2ndarray( 2.0, {
+* 'dtype': 'float32'
+* });
+*
+* var out = ssyr( [ x, A, alpha ] );
+* // returns [ [ 3.0, 6.0, 9.0 ], [ 2.0, 9.0, 14.0 ], [ 3.0, 2.0, 19.0 ] ]
+*
+* var bool = ( out === A );
+* // returns true
+*/
+declare function ssyr( arrays: [ float32ndarray, float32ndarray, float32ndarray ] ): float32ndarray;
+
+
+// EXPORTS //
+
+export = ssyr;
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/types/test.ts b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/types/test.ts
new file mode 100644
index 000000000000..b53c1af7af72
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/docs/types/test.ts
@@ -0,0 +1,69 @@
+/*
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+/* eslint-disable space-in-parens */
+
+import zeros = require( '@stdlib/ndarray/zeros' );
+import ssyr = require( '@stdlib/blas/base/ndarray/ssyr' );
+
+
+// TESTS //
+
+// The function returns an ndarray...
+{
+ const x = zeros( [ 3 ], {
+ 'dtype': 'float32'
+ });
+ const A = zeros( [ 3, 3 ], {
+ 'dtype': 'float32'
+ });
+ const alpha = zeros( [], {
+ 'dtype': 'float32'
+ });
+
+ ssyr( [ x, A, alpha ] ); // $ExpectType float32ndarray
+}
+
+// The compiler throws an error if the function is provided a first argument which is not an array of ndarrays...
+{
+ ssyr( '10' ); // $ExpectError
+ ssyr( 10 ); // $ExpectError
+ ssyr( true ); // $ExpectError
+ ssyr( false ); // $ExpectError
+ ssyr( null ); // $ExpectError
+ ssyr( undefined ); // $ExpectError
+ ssyr( [] ); // $ExpectError
+ ssyr( {} ); // $ExpectError
+ ssyr( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const x = zeros( [ 3 ], {
+ 'dtype': 'float32'
+ });
+ const A = zeros( [ 3, 3 ], {
+ 'dtype': 'float32'
+ });
+ const alpha = zeros( [], {
+ 'dtype': 'float32'
+ });
+
+ ssyr(); // $ExpectError
+ ssyr( [ x, A, alpha ], {} ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/examples/index.js b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/examples/index.js
new file mode 100644
index 000000000000..a7aafe2f0366
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/examples/index.js
@@ -0,0 +1,39 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var Float32Array = require( '@stdlib/array/float32' );
+var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
+var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var ssyr = require( './../lib' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+
+var x = new Float32Vector( discreteUniform( 3, 0, 10, opts ) );
+var A = new ndarray( 'float32', new Float32Array( discreteUniform( 9, 0, 10, opts ) ), [ 3, 3 ], [ 3, 1 ], 0, 'row-major' );
+
+var alpha = scalar2ndarray( 1.0, opts );
+
+var out = ssyr( [ x, A, alpha ] );
+console.log( ndarray2array( out ) );
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/lib/index.js b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/lib/index.js
new file mode 100644
index 000000000000..449b15d005df
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/lib/index.js
@@ -0,0 +1,54 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+/**
+* BLAS level 2 routine to perform the symmetric rank 1 operation `A = alpha*x*x^T + A`.
+*
+* @module @stdlib/blas/base/ndarray/ssyr
+*
+* @example
+* var Float32Vector = require( '@stdlib/ndarray/vector/float32' );
+* var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
+* var ndarray = require( '@stdlib/ndarray/base/ctor' );
+* var Float32Array = require( '@stdlib/array/float32' );
+* var ssyr = require( '@stdlib/blas/base/ndarray/ssyr' );
+*
+* var x = new Float32Vector( [ 1.0, 2.0, 3.0 ] );
+* var A = new ndarray( 'float32', new Float32Array( [ 1.0, 2.0, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 1.0 ] ), [ 3, 3 ], [ 3, 1 ], 0, 'row-major' );
+*
+* var alpha = scalar2ndarray( 2.0, {
+* 'dtype': 'float32'
+* });
+*
+* var out = ssyr( [ x, A, alpha ] );
+* // returns [ [ 3.0, 6.0, 9.0 ], [ 2.0, 9.0, 14.0 ], [ 3.0, 2.0, 19.0 ] ]
+*
+* var bool = ( out === A );
+* // returns true
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/lib/main.js b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/lib/main.js
new file mode 100644
index 000000000000..cc6aa8468359
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/ssyr/lib/main.js
@@ -0,0 +1,77 @@
+/**
+* @license Apache-2.0
+*
+* Copyright (c) 2026 The Stdlib Authors.
+*
+* Licensed under the Apache License, Version 2.0 (the "License");
+* you may not use this file except in compliance with the License.
+* You may obtain a copy of the License at
+*
+* http://www.apache.org/licenses/LICENSE-2.0
+*
+* Unless required by applicable law or agreed to in writing, software
+* distributed under the License is distributed on an "AS IS" BASIS,
+* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+* See the License for the specific language governing permissions and
+* limitations under the License.
+*/
+
+'use strict';
+
+// MODULES //
+
+var numelDimension = require( '@stdlib/ndarray/base/numel-dimension' );
+var getStride = require( '@stdlib/ndarray/base/stride' );
+var getOffset = require( '@stdlib/ndarray/base/offset' );
+var getData = require( '@stdlib/ndarray/base/data-buffer' );
+var ndarraylike2scalar = require( '@stdlib/ndarray/base/ndarraylike2scalar' );
+var strided = require( '@stdlib/blas/base/ssyr' ).ndarray;
+
+
+// MAIN //
+
+/**
+* Performs the symmetric rank 1 operation `A = alpha*x*x^T + A`, where `alpha` is a scalar, `x` is an `N` element ndarray, and `A` is an `N` by `N` symmetric matrix.
+*
+* ## Notes
+*
+* - The function expects the following ndarrays:
+*
+* - a one-dimensional input ndarray.
+* - a two-dimensional input/output ndarray.
+* - a zero-dimensional ndarray containing a scalar constant.
+*
+* @param {ArrayLikeObject