diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/README.md b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/README.md
new file mode 100644
index 000000000000..92e7e992db1a
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/README.md
@@ -0,0 +1,126 @@
+
+
+# scnrm2
+
+> Compute the L2-norm of a one-dimensional single-precision complex floating-point ndarray.
+
+
+
+The [L2-norm][l2-norm] is defined as
+
+
+
+```math
+\|\mathbf{x}\|_2 = \sqrt{x_0^2 + x_1^2 + \ldots + x_{N-1}^2}
+```
+
+
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var scnrm2 = require( '@stdlib/blas/base/ndarray/scnrm2' );
+```
+
+#### scnrm2( arrays )
+
+Computes the [L2-norm][l2-norm] of a one-dimensional single-precision complex floating-point ndarray.
+
+```javascript
+var Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
+
+var x = new Complex64Vector( [ 1.0, 2.0, 2.0, 4.0 ] );
+
+var y = scnrm2( [ x ] );
+// returns 5.0
+```
+
+The function has the following parameters:
+
+- **arrays**: array-like object containing the following ndarrays:
+
+ - a one-dimensional input ndarray.
+
+
+
+
+
+
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var discreteUniform = require( '@stdlib/random/array/discrete-uniform' );
+var Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var scnrm2 = require( '@stdlib/blas/base/ndarray/scnrm2' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+
+var x = new Complex64Vector( discreteUniform( 10, -500, 500, opts ) );
+console.log( ndarray2array( x ) );
+
+var out = scnrm2( [ x ] );
+console.log( out );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+[l2-norm]: https://en.wikipedia.org/wiki/Euclidean_distance
+
+
+
+
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/benchmark/benchmark.js
new file mode 100644
index 000000000000..06a1e3c242f9
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/benchmark/benchmark.js
@@ -0,0 +1,104 @@
+/**
+* @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/array/uniform' );
+var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
+var format = require( '@stdlib/string/format' );
+var pkg = require( './../package.json' ).name;
+var scnrm2 = require( './../lib' );
+
+
+// FUNCTIONS //
+
+/**
+* Creates a benchmark function.
+*
+* @private
+* @param {PositiveInteger} len - array length
+* @returns {Function} benchmark function
+*/
+function createBenchmark( len ) {
+ var xbuf;
+ var x;
+
+ xbuf = uniform( len*2, -100.0, 100.0, {
+ 'dtype': 'float32'
+ });
+ x = new Complex64Vector( xbuf.buffer );
+
+ 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 = scnrm2( [ x ] );
+ if ( isnanf( z ) ) {
+ b.fail( 'should not return NaN' );
+ }
+ }
+ b.toc();
+ if ( isnanf( z ) ) {
+ 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 = 6; // 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/scnrm2/docs/img/equation_l2_norm.svg b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/img/equation_l2_norm.svg
new file mode 100644
index 000000000000..3553d294eb63
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/img/equation_l2_norm.svg
@@ -0,0 +1,53 @@
+
\ No newline at end of file
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/repl.txt b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/repl.txt
new file mode 100644
index 000000000000..a678cd60ba2c
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/repl.txt
@@ -0,0 +1,26 @@
+
+{{alias}}( arrays )
+ Computes the L2-norm of a one-dimensional single-precision complex
+ floating-point ndarray.
+
+ If provided an empty input ndarray, the function returns `0.0`.
+
+ Parameters
+ ----------
+ arrays: ArrayLikeObject
+ Array-like object containing a one-dimensional input ndarray.
+
+ Returns
+ -------
+ out: number
+ The L2-norm.
+
+ Examples
+ --------
+ > var x = new {{alias:@stdlib/ndarray/vector/complex64}}( [ 1.0, 2.0, 2.0, 4.0 ] );
+ > {{alias}}( [ x ] )
+ 5.0
+
+ See Also
+ --------
+
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/types/index.d.ts
new file mode 100644
index 000000000000..02803de2a921
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/types/index.d.ts
@@ -0,0 +1,50 @@
+/*
+* @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 { complex64ndarray } from '@stdlib/types/ndarray';
+
+/**
+* Computes the L2-norm of a one-dimensional single-precision complex floating-point ndarray.
+*
+* ## Notes
+*
+* - The function expects the following ndarrays:
+*
+* - a one-dimensional input ndarray.
+*
+* @param arrays - array-like object containing ndarrays
+* @returns L2-norm
+*
+* @example
+* var Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
+*
+* var x = new Complex64Vector( [ 1.0, 2.0, 2.0, 4.0 ] );
+*
+* var y = scnrm2( [ x ] );
+* // returns 5.0
+*/
+declare function scnrm2( arrays: [ complex64ndarray ] ): number;
+
+
+// EXPORTS //
+
+export = scnrm2;
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/types/test.ts b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/types/test.ts
new file mode 100644
index 000000000000..7e15027d475c
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/docs/types/test.ts
@@ -0,0 +1,57 @@
+/*
+* @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 scnrm2 = require( './index' );
+
+
+// TESTS //
+
+// The function returns a number...
+{
+ const x = zeros( [ 10 ], {
+ 'dtype': 'complex64'
+ });
+
+ scnrm2( [ x ] ); // $ExpectType number
+}
+
+// The compiler throws an error if the function is provided a first argument which is not an array of ndarrays...
+{
+ scnrm2( '10' ); // $ExpectError
+ scnrm2( 10 ); // $ExpectError
+ scnrm2( true ); // $ExpectError
+ scnrm2( false ); // $ExpectError
+ scnrm2( null ); // $ExpectError
+ scnrm2( undefined ); // $ExpectError
+ scnrm2( [] ); // $ExpectError
+ scnrm2( {} ); // $ExpectError
+ scnrm2( ( x: number ): number => x ); // $ExpectError
+}
+
+// The compiler throws an error if the function is provided an unsupported number of arguments...
+{
+ const x = zeros( [ 10 ], {
+ 'dtype': 'complex64'
+ });
+
+ scnrm2(); // $ExpectError
+ scnrm2( [ x ], {} ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/examples/index.js b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/examples/index.js
new file mode 100644
index 000000000000..c80963e059ad
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/examples/index.js
@@ -0,0 +1,34 @@
+/**
+* @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 Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var scnrm2 = require( './../lib' );
+
+var opts = {
+ 'dtype': 'float32'
+};
+
+var x = new Complex64Vector( discreteUniform( 10, -500, 500, opts ) );
+console.log( ndarray2array( x ) );
+
+var out = scnrm2( [ x ] );
+console.log( out );
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/lib/index.js b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/lib/index.js
new file mode 100644
index 000000000000..e8db2911ebe8
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/lib/index.js
@@ -0,0 +1,43 @@
+/**
+* @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 1 routine to compute the L2-norm of a one-dimensional single-precision complex floating-point ndarray.
+*
+* @module @stdlib/blas/base/ndarray/scnrm2
+*
+* @example
+* var Complex64Vector = require( '@stdlib/ndarray/vector/complex64' );
+* var scnrm2 = require( '@stdlib/blas/base/ndarray/scnrm2' );
+*
+* var x = new Complex64Vector( [ 1.0, 2.0, 2.0, 4.0 ] );
+*
+* var y = scnrm2( [ x ] );
+* // returns 5.0
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/lib/main.js b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/lib/main.js
new file mode 100644
index 000000000000..36afb7c30792
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/base/ndarray/scnrm2/lib/main.js
@@ -0,0 +1,60 @@
+/**
+* @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 strided = require( '@stdlib/blas/base/scnrm2' ).ndarray;
+
+
+// MAIN //
+
+/**
+* Computes the L2-norm of a one-dimensional single-precision complex floating-point ndarray.
+*
+* ## Notes
+*
+* - The function expects the following ndarrays:
+*
+* - a one-dimensional input ndarray.
+*
+* @param {ArrayLikeObject