Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iterable-iterator/convolution
:bar_chart: Iterable convolution for JavaScript
https://github.com/iterable-iterator/convolution
Last synced: about 2 months ago
JSON representation
:bar_chart: Iterable convolution for JavaScript
- Host: GitHub
- URL: https://github.com/iterable-iterator/convolution
- Owner: iterable-iterator
- License: agpl-3.0
- Created: 2021-05-05T13:17:43.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-12T04:35:02.000Z (4 months ago)
- Last Synced: 2024-09-13T13:51:55.425Z (4 months ago)
- Language: JavaScript
- Homepage: https://iterable-iterator.github.io/convolution
- Size: 2.46 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
:bar_chart: [@iterable-iterator/convolution](https://iterable-iterator.github.io/convolution)
==Iterable convolution for JavaScript.
See [docs](https://iterable-iterator.github.io/convolution/index.html).> :warning: Depending on your environment, the code may require
> `regeneratorRuntime` to be defined, for instance by importing
> [regenerator-runtime/runtime](https://www.npmjs.com/package/regenerator-runtime).```js
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](https://img.shields.io/github/license/iterable-iterator/convolution.svg)](https://raw.githubusercontent.com/iterable-iterator/convolution/main/LICENSE)
[![Version](https://img.shields.io/npm/v/@iterable-iterator/convolution.svg)](https://www.npmjs.org/package/@iterable-iterator/convolution)
[![Tests](https://img.shields.io/github/actions/workflow/status/iterable-iterator/convolution/ci.yml?branch=main&event=push&label=tests)](https://github.com/iterable-iterator/convolution/actions/workflows/ci.yml?query=branch:main)
[![Dependencies](https://img.shields.io/librariesio/github/iterable-iterator/convolution.svg)](https://github.com/iterable-iterator/convolution/network/dependencies)
[![GitHub issues](https://img.shields.io/github/issues/iterable-iterator/convolution.svg)](https://github.com/iterable-iterator/convolution/issues)
[![Downloads](https://img.shields.io/npm/dm/@iterable-iterator/convolution.svg)](https://www.npmjs.org/package/@iterable-iterator/convolution)[![Code issues](https://img.shields.io/codeclimate/issues/iterable-iterator/convolution.svg)](https://codeclimate.com/github/iterable-iterator/convolution/issues)
[![Code maintainability](https://img.shields.io/codeclimate/maintainability/iterable-iterator/convolution.svg)](https://codeclimate.com/github/iterable-iterator/convolution/trends/churn)
[![Code coverage (cov)](https://img.shields.io/codecov/c/gh/iterable-iterator/convolution/main.svg)](https://codecov.io/gh/iterable-iterator/convolution)
[![Code technical debt](https://img.shields.io/codeclimate/tech-debt/iterable-iterator/convolution.svg)](https://codeclimate.com/github/iterable-iterator/convolution/trends/technical_debt)
[![Documentation](https://iterable-iterator.github.io/convolution/badge.svg)](https://iterable-iterator.github.io/convolution/source.html)
[![Package size](https://img.shields.io/bundlephobia/minzip/@iterable-iterator/convolution)](https://bundlephobia.com/result?p=@iterable-iterator/convolution)