ndarray bundle

The ndarray-bundle is a Node module including ndarray and related useful libraries.

Usage

You include the module the same way you'd include ndarray:

var ndarray = require('ndarray-bundle');

Other useful functionality (e.g. complex numbers, convolution, FFT) is available as properties or sub-properties:

ndarray.fill(arr, function (i, j) {
	return i + j;
});

Module structure

These are the modules that are included in the bundle - click the module names for documentation:

{}

If you only want to include specific things, there is code-generation available so you can create an equivalently-shaped bundle that only includes what you want. This is useful for Browserify, or applications where unnecessary modules are costly.

Contribute

Written an ndarray module, then please raise an issue on the GitHub repo. Pull requests are also welcome!