compute-dims

WebJar for compute-dims

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

compute-dims
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

compute-dims
WebJar for compute-dims
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/compute-io/dims

Download compute-dims

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/compute-dims/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>compute-dims</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/compute-dims/
implementation 'org.webjars.npm:compute-dims:1.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/compute-dims/
implementation ("org.webjars.npm:compute-dims:1.1.0")
'org.webjars.npm:compute-dims:jar:1.1.0'
<dependency org="org.webjars.npm" name="compute-dims" rev="1.1.0">
  <artifact name="compute-dims" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='compute-dims', version='1.1.0')
)
libraryDependencies += "org.webjars.npm" % "compute-dims" % "1.1.0"
[org.webjars.npm/compute-dims "1.1.0"]

Dependencies

compile (5)

Group / Artifact Type Version
org.webjars.npm : validate.io-positive-integer jar [1.0.0,2)
org.webjars.npm : validate.io-array jar [1.0.6,2)
org.webjars.npm : validate.io-matrix-like jar [1.0.2,2)
org.webjars.npm : utils-copy jar [1.0.0,2)
org.webjars.npm : validate.io-ndarray-like jar [1.0.0,2)

Project Modules

There are no modules declared in this project.

dims

NPM version Build Status Coverage Status Dependencies

Computes dimensions for arrays and matrices.

Installation

$ npm install compute-dims

For use in the browser, use browserify.

Usage

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

dims( x[, max] )

Computes dimensions of x. x may be either an array (including nested arrays) or a matrix.

var matrix = require( 'dstructs-matrix' ),
	data,
	d;

data = [ 1, 2 ];
d = dims( data );
// returns [2]

data = [ [1,2], [1,2] ];
d = dims( data );
// returns [2,2]

data = matrix( [1,2,3,4], [2,2] )
d = dims( data );
// returns [2,2]

If an array element has a dimension inconsistent with other elements, the function returns null.

data = [ [1,2], [1] ];
d = dims( data );
// returns null

To limit the number of dimensions returned, set the max option.

data = [ [[1,2], [3,4]] ]; // 1x2x2
d = dims( data, 2 );
// returns [1,2]

data = [ [[1,2], [3,4,5,6,7,8]] ];
d = dims( data );
// returns null

d = dims( data, 2 );
// returns [1,2]

data = matrix( [1,2,3,4], [2,2] );
d = dims( data, 1 );
// returns [2]

Examples

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 © 2014-2015. The Compute.io Authors.

org.webjars.npm

Compute

JavaScript computation utilities.

Versions

Version
1.1.0