Converts an ndarray into an array-of-native-arrays. (Same format used by numeric.js). Like all ndarray modules this works both in node.js and in the browser.
//Create an ndarray and set a value
var x = require("zeros")([5,5])
x.set(2,2,1)
//Convert ndarray into array-of-arrays
console.log(require("unpack")(x))
npm install ndarray-unpack
Converts array
into an array-of-arrays style array.
array
is an ndarray
Returns An array-of-arrays having the same contents as array
(c) 2013 Mikola Lysenko. MIT License