npm.io
0.0.3 • Published 12 years ago

dtw

Licence
MIT
Version
0.0.3
Deps
1
Vulns
0
Weekly
0
Stars
35

DTW

Dynamic time warping javascript implementation

Installation

npm install dtw

Tests

The test suite can be invoked from the command line like this:

npm test

Usage

var DTW = require('dtw');
var s = [1,1,2,3,2,0];
var t = [0,1,1,2,3,2,1];
var dtw = new DTW();
var cost = dtw.compute(s, t);
var path = dtw.path();
console.log('Cost: ' + cost);
console.log('Path: ');
console.log(path);

Documentation

Future work

  • Implement fast (O(n)) and sparse versions.

Keywords