node-matrix-profile
v1.1.0
Published
Node.js bindings to SCAMP
Downloads
6
Readme
node-matrix-profile
node-matrix-profile provides a binding to use SCAMP in your Node.js applications. Note that JavaScript values are converted to C/C++ values and vice-versa, which cause a decrease in runtime.
Install
npm install --save node-matrix-profile
How to use
const mp = require('node-matrix-profile');
const result = mp.calculate({
window_size: 3,
timeseries_a: data
});
console.log(result);
Limitations
- Only profile type
1NN_INDEX
is currently supported.
Development
git clone [email protected]:DemianD/node-matrix-profile.git
npm install