This project implements a moving median filter in C. The median filter takes in a stream of input values and returns the median value over the buffer size. It does this by sorting the data points with ...
The implementation is based on code from the ShellSort article. But the ability to sort any kind of array was added, like in the qsort function. The implementation doesn’t use dynamic memory ...