A suite to track Project Diva score statistics and ratings / D4DJ event data.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
projectdivar/server/node_modules/ndarray-pack/README.md

31 lines
764 B

ndarray-pack
============
Converts an array-of-arrays (ie [numeric.js array](http://www.numericjs.com/)) into a packed [ndarray](https://github.com/mikolalysenko/ndarray).
Example
=======
```javascript
//First create a numeric.js style array:
var x = [[1, 0, 1],
[0, 1, 1],
[0, 0, 1],
[1, 0, 0]]
var y = require("ndarray-pack")(x)
```
Install
=======
npm install ndarray-pack
### `require("ndarray-pack")(nested_array[,out])`
Converts the nested array into a packed ndarray.
* `nested_array` is an array-of-arrays (ie a numeric.js array)
* `out` is an optional ndarray that gets the result of unpacking `array`
**Returns** A packed ndarray representation of the nested arrays.
# Credits
(c) 2013 Mikola Lysenko. MIT License