@iterable-iterator/convolution

1.0.0 • Public • Published

📊 @iterable-iterator/convolution

Iterable convolution for JavaScript. See docs.

⚠️ Depending on your environment, the code may require regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

import {convolution} from '@iterable-iterator/convolution';

const moving_average = [1/4, 1/4, 1/4, 1/4];
convolution(moving_average, signal); // ...

const first_derivative = [1, -1];
convolution(first_derivative, signal); // ...

const second_derivative = [1, -2, 1];
convolution(second_derivative, signal); // ...

License Version Tests Dependencies Dev dependencies GitHub issues Downloads

Code issues Code maintainability Code coverage (cov) Code technical debt Documentation Package size

Package Sidebar

Install

npm i @iterable-iterator/convolution

Weekly Downloads

0

Version

1.0.0

License

AGPL-3.0

Unpacked Size

501 kB

Total Files

14

Last publish

Collaborators

  • raskat
  • aureooms