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 🙏

© 2024 – Pkg Stats / Ryan Hefner

compute-inf

v1.0.0

Published

Creates an infinity-filled matrix or array.

Downloads

6

Readme

inf

NPM version Build Status Coverage Status Dependencies

Creates an infinity-filled matrix or array.

Installation

$ npm install compute-inf

For use in the browser, use browserify.

Usage

var inf = require( 'compute-inf' );

inf( dims[, opts] )

Creates an infinity-filled matrix or array. The dims argument may either be a positive integer specifying a length or an array of positive integers specifying dimensions.

var out;

out = inf( 5 );
// returns [ +inf, +inf, +inf, +inf, +inf ];

out = inf( [2,1,2] );
// returns [ [ [+inf,+inf] ], [ [+inf,+inf] ] ]

The function accepts the following options:

  • dtype: output data type. The following dtypes are accepted:

    • float32
    • float64
    • generic (default)
  • sign: specifies whether to fill using positive or negative infinity. Default: +1.

By default, the output data structure is a generic array. To output a typed array or matrix, set the dtype option.

var out;

out = inf( 5, {
	'dtype': 'float32'
});
// returns Float32Array( [+inf,+inf,+inf,+inf,+inf] );

out = inf( [3,2], {
	'dtype': 'float64'
});
/*
	[ +inf +inf
	  +inf +inf
	  +inf +inf ]
*/

To fill using negative infinity, set the sign option to -1.

var out = inf( 5, {
	'sign': -1
});
// returns [ -inf, -inf, -inf, -inf, -inf ];

Notes:

  • Currently, for more than 2 dimensions, the function outputs a generic array and ignores any specified dtype.

    var out = inf( [2,1,3], {
    	'dtype': 'float32'
    });
    // returns [ [ [+inf,+inf,+inf] ], [ [+inf,+inf,+inf] ] ]
  • Integer arrays are not supported. In JavaScript, positive and negative infinity are only represented in floating-point storage formats (IEEE 754).

inf.compile( dims )

Compiles a function for creating infinity-filled arrays having specified dimensions.

var fcn, out;

fcn = inf.compile( [2,1,3] );

out = fcn();
// returns [ [ [+inf,+inf,+inf] ], [ [+inf,+inf,+inf] ] ]

out = fcn();
// returns [ [ [+inf,+inf,+inf] ], [ [+inf,+inf,+inf] ] ]

Notes:

  • When repeatedly creating arrays having the same shape, creating a customized inf function will provide performance benefits.

Examples

var inf = require( 'compute-inf' ),
	out;

// Plain arrays...

// 1x10:
out = inf( 10 );

// 2x1x3:
out = inf( [2,1,3] );

// 5x5x5:
out = inf( [5,5,5] );

// 10x5x10x20:
out = inf( [10,5,10,20] );

// Typed arrays...
out = inf( 10, {
	'dtype': 'float32',
	'sign': -1
});

// Matrices...
out = inf( [3,2], {
	'dtype': 'float64'
});

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.

Copyright

Copyright © 2015-2016. The Compute.io Authors.