Added math.h to fir.c

This commit is contained in:
David Harris 2022-01-28 00:26:06 +00:00
parent 862bf2faae
commit 6dfeade41b

View file

@ -3,6 +3,7 @@
// Finite Impulse Response Filter
#include <stdio.h> // supports printf
#include <math.h> // supports fabs
#include "util.h" // supports verify
void fir(int N, int M, double X[], double c[], double Y[]) {