mljs/savitzky-golay

use full and understandable names

Closed this issue · 0 comments

function SavitzkyGolay (y, dx) {
this.data = y;
this.h = dx
}

var defaultOptions = {
windSize: 5,
deriv: 1,
pol: 2
};