array-base-ones2d

Create a two-dimensional nested array filled with ones.

APACHE-2.0 License

Downloads
57
Stars
1
Committers
1

ones2d

Create a two-dimensional nested array filled with ones.

Installation

npm install @stdlib/array-base-ones2d

Alternatively,

  • To load the package in a website via a script tag without installation and bundlers, use the ES Module available on the esm branch (see README).
  • If you are using Deno, visit the deno branch (see README for usage intructions).
  • For use in Observable, or in browser/node environments, use the Universal Module Definition (UMD) build available on the umd branch (see README).

The branches.md file summarizes the available branches and displays a diagram illustrating their relationships.

To view installation and usage instructions specific to each branch build, be sure to explicitly navigate to the respective README files on each branch, as linked to above.

Usage

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

ones2d( shape )

Returns a two-dimensional nested array filled with ones.

var out = ones2d( [ 2, 3 ] );
// returns [ [ 1.0, 1.0, 1.0 ], [ 1.0, 1.0, 1.0 ] ]

Examples

var gscal = require( '@stdlib/blas-base-gscal' );
var ones2d = require( '@stdlib/array-base-ones2d' );

// Create a ones-filled array:
var arr = ones2d( [ 5, 10 ] );

// Scale element values...
gscal( arr[ 0 ].length, 2.0, arr[ 0 ], 1 );
gscal( arr[ 1 ].length, 3.0, arr[ 1 ], 1 );
gscal( arr[ 2 ].length, 4.0, arr[ 2 ], 1 );
gscal( arr[ 3 ].length, 5.0, arr[ 3 ], 1 );
gscal( arr[ 4 ].length, 6.0, arr[ 4 ], 1 );

console.log( arr );
// => [ [ 2.0, 2.0, ... ], [ 3.0, 3.0, ... ], [ 4.0, 4.0, ... ], [ 5.0, 5.0, ... ], [ 6.0, 6.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


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.

Package Rankings
Top 46.16% on Npmjs.org
Badges
Extracted from project README
NPM version Build Status Coverage Status Chat
Related Projects