edivisive-wasm
v0.1.3
Published
WASM binding to EDivisive Means algorithm
Downloads
6
Readme
WASM binding for E-Divisive means
WASM binding for this E-Divisive Means implementation.
Usage
import {change_points} from "edivisive-wasm";
const series = [0, 0, 0, 0, 0, 1, 1, 1];
const cp = change_points(series);
console.log(cp); // [5]