@stdlib/array-base-zeros

Create a zero-filled generic array.

Usage no npm install needed!

<script type="module">
  import stdlibArrayBaseZeros from 'https://cdn.skypack.dev/@stdlib/array-base-zeros';
</script>

README

zeros

NPM version Build Status Coverage Status

Create a zero-filled "generic" array.

Installation

npm install @stdlib/array-base-zeros

Usage

var zeros = require( '@stdlib/array-base-zeros' );

zeros( len )

Returns a zero-filled "generic" array.

var out = zeros( 3 );
// returns [ 0.0, 0.0, 0.0 ]

Examples

var gfill = require( '@stdlib/blas-ext-base-gfill' ).ndarray;
var zeros = require( '@stdlib/array-base-zeros' );

// Create a zero-filled array:
var arr = zeros( 10 );

// Fill element pairs with the same value...
gfill( 2, 1.0, arr, 1, 0 );
gfill( 2, 2.0, arr, 1, 2 );
gfill( 2, 3.0, arr, 1, 4 );
gfill( 2, 4.0, arr, 1, 6 );
gfill( 2, 5.0, arr, 1, 8 );

console.log( arr );
// => [ 1.0, 1.0, 2.0, 2.0, 3.0, 3.0, 4.0, 4.0, 5.0, 5.0 ]

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2022. The Stdlib Authors.