zeros
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 );
Examples
var gfill = require( '@stdlib/blas-ext-base-gfill' ).ndarray;
var zeros = require( '@stdlib/array-base-zeros' );
var arr = zeros( 10 );
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 );
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.
License
See LICENSE.
Copyright
Copyright © 2016-2022. The Stdlib Authors.
0.0.2 (2022-02-16)
No changes reported for this release.
</section>
<!-- /.release -->
<section class="release" id="v0.0.1">