diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/README.md b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/README.md
new file mode 100644
index 000000000000..99f8b0a704dc
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/README.md
@@ -0,0 +1,111 @@
+
+
+# szeroTo
+
+> Fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
+
+
+
+
+
+
+
+
+
+## Usage
+
+```javascript
+var szeroTo = require( '@stdlib/blas/ext/base/ndarray/szero-to' );
+```
+
+#### szeroTo( arrays )
+
+Fills a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
+
+```javascript
+var Float32Array = require( '@stdlib/array/float32' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+
+var xbuf = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );
+var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
+// returns [ 0.0, 0.0, 0.0, 0.0 ]
+
+var out = szeroTo( [ x ] );
+// returns [ 0.0, 1.0, 2.0, 3.0 ]
+```
+
+The function has the following parameters:
+
+- **arrays**: array-like object containing a one-dimensional input ndarray.
+
+
+
+
+
+
+
+## Notes
+
+- The input ndarray is modified **in-place** (i.e., the input ndarray is **mutated**).
+
+
+
+
+
+
+
+## Examples
+
+
+
+```javascript
+var zeros = require( '@stdlib/array/zeros' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var szeroTo = require( '@stdlib/blas/ext/base/ndarray/szero-to' );
+
+var xbuf = zeros( 10, 'float32' );
+var x = new ndarray( 'float32', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
+console.log( ndarray2array( x ) );
+
+szeroTo( [ x ] );
+console.log( ndarray2array( x ) );
+```
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/benchmark/benchmark.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/benchmark/benchmark.js
new file mode 100644
index 000000000000..0c3cdfab09b0
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/benchmark/benchmark.js
@@ -0,0 +1,108 @@
+/**
+* @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 zeros = require( '@stdlib/array/zeros' );
+var pow = require( '@stdlib/math/base/special/pow' );
+var format = require( '@stdlib/string/format' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var pkg = require( './../package.json' ).name;
+var szeroTo = 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 xbuf;
+ var x;
+
+ xbuf = zeros( len, options.dtype );
+ x = new ndarray( options.dtype, xbuf, [ len ], [ 1 ], 0, 'row-major' );
+
+ return benchmark;
+
+ /**
+ * Benchmark function.
+ *
+ * @private
+ * @param {Benchmark} b - benchmark instance
+ */
+ function benchmark( b ) {
+ var out;
+ var i;
+
+ b.tic();
+ for ( i = 0; i < b.iterations; i++ ) {
+ out = szeroTo( [ x ] );
+ if ( typeof out !== 'object' ) {
+ b.fail( 'should return an ndarray' );
+ }
+ }
+ b.toc();
+ if ( typeof out !== 'object' ) {
+ b.fail( 'should return an ndarray' );
+ }
+ 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/ext/base/ndarray/szero-to/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/repl.txt
new file mode 100644
index 000000000000..9037ac40e8e1
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/repl.txt
@@ -0,0 +1,32 @@
+
+{{alias}}( arrays )
+ Fills a one-dimensional single-precision floating-point ndarray with
+ linearly spaced numeric elements which increment by `1` starting from zero.
+
+ The input ndarray is modified *in-place* (i.e., the input ndarray is
+ *mutated*).
+
+ Parameters
+ ----------
+ arrays: ArrayLikeObject
+ Array-like object containing a one-dimensional input ndarray.
+
+ Returns
+ -------
+ out: ndarray
+ Input ndarray.
+
+ Examples
+ --------
+ > var xbuf = new {{alias:@stdlib/array/float32}}( [ 0.0, 0.0, 0.0, 0.0 ] );
+ > var dt = 'float32';
+ > var sh = [ xbuf.length ];
+ > var sx = [ 1 ];
+ > var ox = 0;
+ > var ord = 'row-major';
+ > var x = new {{alias:@stdlib/ndarray/ctor}}( dt, xbuf, sh, sx, ox, ord );
+ > {{alias}}( [ x ] )
+ [ 0.0, 1.0, 2.0, 3.0 ]
+
+ See Also
+ --------
diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/types/index.d.ts
new file mode 100644
index 000000000000..ba4b0fb159c3
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/types/index.d.ts
@@ -0,0 +1,47 @@
+/*
+* @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';
+
+/**
+* Fills a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
+*
+* @param arrays - array-like object containing a one-dimensional input ndarray
+* @returns input ndarray
+*
+* @example
+* var Float32Array = require( '@stdlib/array/float32' );
+* var ndarray = require( '@stdlib/ndarray/base/ctor' );
+*
+* var xbuf = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );
+* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
+* // returns [ 0.0, 0.0, 0.0, 0.0 ]
+*
+* var out = szeroTo( [ x ] );
+* // returns [ 0.0, 1.0, 2.0, 3.0 ]
+*/
+declare function szeroTo( arrays: [ float32ndarray ] ): float32ndarray;
+
+
+// EXPORTS //
+
+export = szeroTo;
diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/types/test.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/docs/types/test.ts
new file mode 100644
index 000000000000..04c37af6fc89
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/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 szeroTo = require( './index' );
+
+
+// TESTS //
+
+// The function returns an ndarray...
+{
+ const x = zeros( [ 10 ], {
+ 'dtype': 'float32'
+ });
+
+ szeroTo( [ x ] ); // $ExpectType float32ndarray
+}
+
+// The compiler throws an error if the function is provided a first argument which is not an array of ndarrays...
+{
+ szeroTo( '10' ); // $ExpectError
+ szeroTo( 10 ); // $ExpectError
+ szeroTo( true ); // $ExpectError
+ szeroTo( false ); // $ExpectError
+ szeroTo( null ); // $ExpectError
+ szeroTo( undefined ); // $ExpectError
+ szeroTo( [] ); // $ExpectError
+ szeroTo( {} ); // $ExpectError
+ szeroTo( ( 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': 'float32'
+ });
+
+ szeroTo(); // $ExpectError
+ szeroTo( [ x ], {} ); // $ExpectError
+}
diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/examples/index.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/examples/index.js
new file mode 100644
index 000000000000..18c768798bf2
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/examples/index.js
@@ -0,0 +1,31 @@
+/**
+* @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 zeros = require( '@stdlib/array/zeros' );
+var ndarray = require( '@stdlib/ndarray/base/ctor' );
+var ndarray2array = require( '@stdlib/ndarray/to-array' );
+var szeroTo = require( './../lib' );
+
+var xbuf = zeros( 10, 'float32' );
+var x = new ndarray( 'float32', xbuf, [ xbuf.length ], [ 1 ], 0, 'row-major' );
+console.log( ndarray2array( x ) );
+
+szeroTo( [ x ] );
+console.log( ndarray2array( x ) );
diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/lib/index.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/lib/index.js
new file mode 100644
index 000000000000..43179b72b661
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/lib/index.js
@@ -0,0 +1,46 @@
+/**
+* @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';
+
+/**
+* Fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
+*
+* @module @stdlib/blas/ext/base/ndarray/szero-to
+*
+* @example
+* var Float32Array = require( '@stdlib/array/float32' );
+* var ndarray = require( '@stdlib/ndarray/base/ctor' );
+* var szeroTo = require( '@stdlib/blas/ext/base/ndarray/szero-to' );
+*
+* var xbuf = new Float32Array( [ 0.0, 0.0, 0.0, 0.0 ] );
+* var x = new ndarray( 'float32', xbuf, [ 4 ], [ 1 ], 0, 'row-major' );
+* // returns [ 0.0, 0.0, 0.0, 0.0 ]
+*
+* var out = szeroTo( [ x ] );
+* // returns [ 0.0, 1.0, 2.0, 3.0 ]
+*/
+
+// MODULES //
+
+var main = require( './main.js' );
+
+
+// EXPORTS //
+
+module.exports = main;
diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/lib/main.js
new file mode 100644
index 000000000000..24b1e5df8ba8
--- /dev/null
+++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/szero-to/lib/main.js
@@ -0,0 +1,58 @@
+/**
+* @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/ext/base/szero-to' ).ndarray;
+
+
+// MAIN //
+
+/**
+* Fills a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
+*
+* @param {ArrayLikeObject