Problem I’m currently writing some of my first assembly code for a new project, I am applying a small non-recursive […]
Tag: signal-processing
Performing a “mean blur”
Problem I perform a mean blur on a number[][]-array (called grid in the code). I iterate the array, and calculate […]
Calculating silence in a WAV file
Problem I made this script to calculate the amount of silence in seconds in an audio file. Is this a […]
Iterative algorithm to convert a signal to Fourier series
Problem I want to show you an iterative algorithm to convert a signal to a Fourier series. When I ran […]
Moving median filter (medfilt) in C
Problem I have implemented a Moving Median Filter and I would like a review. I am using a linked list […]
Peak valley detection in python
Problem Below is a peak/valley detection algorithm I’ve designed. The basic premises for this function is that we split our […]
Performing a “mean blur”
Problem I perform a mean blur on a number[][]-array (called grid in the code). I iterate the array, and calculate […]