[PR #1517] [CLOSED] Convolution #2123

Open
opened 2026-01-29 15:29:06 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1517
Author: @ghost
Created: 10/27/2025
Status: Closed

Base: masterHead: Convolution


📝 Commits (2)

  • cef1ec4 feat: Add convolution algorithm and plotting the output
  • 50f70cb feat: Add convolution algorithm and plotting the output

📊 Changes

5 files changed (+259 additions, -0 deletions)

View changed files

Convolution/README.md (+50 -0)
Convolution/conv (+0 -0)
Convolution/requirements.txt (+2 -0)
Convolution/src/convolve.c (+154 -0)
Convolution/src/plotter.py (+53 -0)

📄 Description

This project uses the brute force way to convolve two arrays (linear 1D convolution) and plot the output with pythons Matplotlib this includes writing the output to files and linking C with python using a simple function in C.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1517 **Author:** [@ghost](https://github.com/ghost) **Created:** 10/27/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `Convolution` --- ### 📝 Commits (2) - [`cef1ec4`](https://github.com/TheAlgorithms/C/commit/cef1ec4888c6fc16f2a9c49d04db873b1d89b2bb) feat: Add convolution algorithm and plotting the output - [`50f70cb`](https://github.com/TheAlgorithms/C/commit/50f70cbe85b02b325e651788dcf835b98427ee81) feat: Add convolution algorithm and plotting the output ### 📊 Changes **5 files changed** (+259 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `Convolution/README.md` (+50 -0) ➕ `Convolution/conv` (+0 -0) ➕ `Convolution/requirements.txt` (+2 -0) ➕ `Convolution/src/convolve.c` (+154 -0) ➕ `Convolution/src/plotter.py` (+53 -0) </details> ### 📄 Description This project uses the brute force way to convolve two arrays (linear 1D convolution) and plot the output with pythons Matplotlib this includes writing the output to files and linking C with python using a simple function in C. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:29:06 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#2123