npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@stdlib/random-tools-ternary

v0.1.0

Published

Constructor for creating ndarrays filled with pseudorandom values drawn from a ternary PRNG.

Readme

Random

NPM version Build Status Coverage Status

Constructor for creating ndarrays filled with pseudorandom values drawn from a ternary PRNG.

Installation

npm install @stdlib/random-tools-ternary

Usage

var Random = require( '@stdlib/random-tools-ternary' );

Random( prng, idtypes, odtypes, policies[, options] )

Returns an interface for creating ndarrays filled with pseudorandom values drawn from a ternary PRNG.

var dtypes = require( '@stdlib/ndarray-dtypes' );
var frechet = require( '@stdlib/random-base-frechet' );

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( frechet, [ idt, idt, idt ], odt, policies, options );

The constructor has the following parameters:

  • prng: ternary 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:

Random.prototype.generate( shape, param1, param2, param3[, options] )

Returns an ndarray filled with pseudorandom values drawn from a ternary PRNG.

var dtypes = require( '@stdlib/ndarray-dtypes' );
var frechet = require( '@stdlib/random-base-frechet' );

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( frechet, [ idt, idt, idt ], odt, policies, options );

var v = rand.generate( [ 2, 2 ], 2.0, 3.0, 0.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.
  • param3: third 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 frechet = require( '@stdlib/random-base-frechet' );

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( frechet, [ idt, idt, idt ], odt, policies, options );

var v = rand.generate( [ 2, 2 ], 2.0, 3.0, 0.0, {
    'dtype': 'generic'
});
// returns <ndarray>

var dt = String( getDType( v ) );
// returns 'generic'

Random.prototype.assign( param1, param2, param3, out )

Fills an ndarray with pseudorandom values drawn from a ternary PRNG.

var dtypes = require( '@stdlib/ndarray-dtypes' );
var ndzeros = require( '@stdlib/ndarray-zeros' );
var frechet = require( '@stdlib/random-base-frechet' );

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( frechet, [ idt, idt, idt ], odt, policies, options );

var out = ndzeros( [ 2, 2 ] );
var v = rand.assign( 2.0, 3.0, 0.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.
  • param3: third PRNG parameter. May be either a scalar or an ndarray. If an ndarray, must be broadcast compatible with the output ndarray.
  • out: output ndarray.

Notes

  • The output data type policy only applies to the generate method. For the assign method, the output ndarray is allowed to have any supported output data type.

Examples

var frechet = require( '@stdlib/random-base-frechet' );
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-ternary' );

// 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( frechet, [ idt, idt, idt ], odt, policies );

// Generate a 3x3 matrix of pseudorandom numbers:
var x = random.generate( [ 3, 3 ], 2.0, 3.0, 0.0 );
console.log( ndarray2array( x ) );

// Generate another matrix with a specified data type:
x = random.generate( [ 3, 3 ], 2.0, 3.0, 0.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' );
var param3 = new ndarray( 'generic', [ 0.0, 100.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, param3 );
console.log( ndarray2array( x ) );

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-2026. The Stdlib Authors.