About stdlib...
We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.
The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.
When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.
To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!
Constructor for creating ndarrays filled with pseudorandom values drawn from a binary PRNG.
npm install @stdlib/random-tools-binary
Alternatively,
- To load the package in a website via a
script
tag without installation and bundlers, use the ES Module available on theesm
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.
var Random = require( '@stdlib/random-tools-binary' );
Returns an interface for creating ndarrays filled with pseudorandom values drawn from a binary PRNG.
var dtypes = require( '@stdlib/ndarray-dtypes' );
var uniform = require( '@stdlib/random-base-uniform' );
var idt = dtypes( 'real_and_generic' );
var odt = dtypes( 'real_floating_point_and_generic' );
var policies = {
'output': 'real_floating_point_and_generic'
};
var options = {
'order': 'row-major'
};
var rand = new Random( uniform, [ idt, idt ], odt, policies, options );
The constructor has the following parameters:
-
prng: binary pseudorandom value generator.
-
idtypes: list containing a list of supported input data types for each PRNG parameter.
-
odtypes: list of supported output data types.
-
policies: interface policies. Must have the following properties:
- output: output data type policy.
-
options: function options (optional).
The constructor supports the following options:
- order: default memory layout.
Returns an ndarray filled with pseudorandom values drawn from a binary PRNG.
var dtypes = require( '@stdlib/ndarray-dtypes' );
var uniform = require( '@stdlib/random-base-uniform' );
var idt = dtypes( 'real_and_generic' );
var odt = dtypes( 'real_floating_point_and_generic' );
var policies = {
'output': 'real_floating_point_and_generic'
};
var options = {
'order': 'row-major'
};
var rand = new Random( uniform, [ idt, idt ], odt, policies, options );
var v = rand.generate( [ 2, 2 ], 0.0, 1.0 );
// returns <ndarray>
The method has the following parameters:
- shape: output ndarray shape.
- param1: first PRNG parameter. May be either a scalar or an ndarray. If an ndarray, must be broadcast compatible with the specified output ndarray shape.
- param2: second PRNG parameter. May be either a scalar or an ndarray. If an ndarray, must be broadcast compatible with the specified output ndarray shape.
- options: function options (optional).
The method accepts the following options:
- dtype: output ndarray data type. Setting this option overrides the output data type policy.
- order: memory layout. Setting this option overrides the default memory layout.
- mode: specifies how to handle indices which exceed ndarray dimensions.
- submode: specifies how to handle subscripts which exceed ndarray dimensions on a per dimension basis.
- readonly: boolean indicating whether an ndarray should be read-only.
By default, the method returns an ndarray having a data type determined by the output data type policy. To override the default behavior, set the dtype
option.
var dtypes = require( '@stdlib/ndarray-dtypes' );
var getDType = require( '@stdlib/ndarray-dtype' );
var uniform = require( '@stdlib/random-base-uniform' );
var idt = dtypes( 'real_and_generic' );
var odt = dtypes( 'real_floating_point_and_generic' );
var policies = {
'output': 'real_floating_point_and_generic'
};
var options = {
'order': 'row-major'
};
var rand = new Random( uniform, [ idt, idt ], odt, policies, options );
var v = rand.generate( [ 2, 2 ], 0.0, 1.0, {
'dtype': 'generic'
});
// returns <ndarray>
var dt = getDType( v );
// returns 'generic'
Fills an ndarray with pseudorandom values drawn from a binary PRNG.
var dtypes = require( '@stdlib/ndarray-dtypes' );
var ndzeros = require( '@stdlib/ndarray-zeros' );
var uniform = require( '@stdlib/random-base-uniform' );
var idt = dtypes( 'real_and_generic' );
var odt = dtypes( 'real_floating_point_and_generic' );
var policies = {
'output': 'real_floating_point_and_generic'
};
var options = {
'order': 'row-major'
};
var rand = new Random( uniform, [ idt, idt ], odt, policies, options );
var out = ndzeros( [ 2, 2 ] );
var v = rand.assign( 0.0, 1.0, out );
// returns <ndarray>
var bool = ( v === out );
// returns true
The method has the following parameters:
- param1: first PRNG parameter. May be either a scalar or an ndarray. If an ndarray, must be broadcast compatible with the output ndarray.
- param2: second PRNG parameter. May be either a scalar or an ndarray. If an ndarray, must be broadcast compatible with the output ndarray.
- out: output ndarray.
- The output data type policy only applies to the
generate
method. For theassign
method, the output ndarray is allowed to have any supported output data type.
var uniform = require( '@stdlib/random-base-uniform' );
var dtypes = require( '@stdlib/ndarray-dtypes' );
var ndarray = require( '@stdlib/ndarray-ctor' );
var ndarray2array = require( '@stdlib/ndarray-to-array' );
var Random = require( '@stdlib/random-tools-binary' );
// Create a new PRNG instance...
var idt = dtypes( 'real_and_generic' );
var odt = dtypes( 'real_floating_point_and_generic' );
var policies = {
'output': 'real_floating_point_and_generic'
};
var random = new Random( uniform, [ idt, idt ], odt, policies );
// Generate a 3x3 matrix of pseudorandom numbers:
var x = random.generate( [ 3, 3 ], 0.0, 1.0 );
console.log( ndarray2array( x ) );
// Generate another matrix with a specified data type:
x = random.generate( [ 3, 3 ], 0.0, 1.0, {
'dtype': 'float32'
});
console.log( ndarray2array( x ) );
// Define arrays of distribution parameters:
var param1 = new ndarray( 'generic', [ 1.0, 10.0, 100.0 ], [ 3, 1 ], [ 1, 1 ], 0, 'row-major' );
var param2 = new ndarray( 'generic', [ 2.0, 20.0, 200.0 ], [ 3, 1 ], [ 1, 1 ], 0, 'row-major' );
// Broadcast the parameters to generate another 3x3 matrix of pseudorandom numbers:
x = random.generate( [ 3, 3 ], param1, param2 );
console.log( ndarray2array( x ) );
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.
See LICENSE.
Copyright © 2016-2025. The Stdlib Authors.