home *** CD-ROM | disk | FTP | other *** search
- /* Program FIR.C - Digital Filter Design Demo Program */
- /* Written by L. Papineau and R. Quinn 1/90 */
- #include <stdio.h>
- #include <conio.h>
- #include <io.h>
- #include <dos.h>
- #include <stdlib.h>
- #include <string.h>
- #include <math.h>
- #include <graph.h>
- #include "fft.h"
- #include "worlddr.h"
- #include "segraph.h"
-
-
- float xdata[500], ydata[500], filteredData[500];
- float gain[500], dbgain[500], filtcoef[100];
- int n, k, i, dc, smoothnum, filttype, win, monoflag;
- float f,fp;
- FILE *filepointer;
- extern BlackAndWhite;
-
- void main(){
- for (i = 0; i <= 100; i++)
- filtcoef[i] = 0.0;
- printf("N FP DC FILTTYPE WIN K\n");
- scanf("%d %f %d %d %d %d", &n,&fp,&dc,&filttype,&win,&k);
- /* n = 21 fp = 0.25 dc = 0 filttype = 0 win = 0 k = 200 */
- FIRFreqSample(filtcoef,fp,n,dc,filttype,win);
- WindowData(filtcoef, n, win );
-
- printf( "Writing out data to FREQDATA.TXT \n");
- filepointer = fopen("freqdata.txt","w");
- fprintf(filepointer, "Filter Coefficients \n");
- fprintf(filepointer, "Filter Tap Magnitude \n");
- for (i = 0; i<= n-1; i++)
- fprintf(filepointer,"%4d %15.7f\n",i,filtcoef[i]);
- fprintf(filepointer, "\n");
-
- InitSEGraphics(6);
-
- for (i = 0; i <= n-1; i ++)
- {
- xdata[i] = i;
- ydata[i] = filtcoef[i];
- }
- SetCurrentWindow(2);
- SetAxesType(0,0);
- ScalePlotArea( 0.0, -0.2, 25, 0.61);
- SetXYIntercepts(0.0,-0.20);
- if (BlackAndWhite == 0) SetViewBackground(9);
- SelectColor(15);
- DrawYAxis(0.1,0);
- LabelYAxis(2, 0);
- DrawXAxis(1.0,0);
- LabelXAxis(5, 0);
- setlinestyleXX(1,1,1);
- DrawGridX(5);
- DrawGridY(1);
- setlinestyleXX(0,1,1);
-
- BargraphData(xdata, ydata, n, 0.3, 1, 1);
- SelectColor(15);
- settextstyleXX(0,0,2);
- TitleWindow("FIR Filter Coefficients");
- TitleXAxis("Filter Coefficient (n)");
- TitleYAxis("Magnitude h(n)");
- settextstyleXX(0,0,1);
- getch();
- ClearWindow();
-
- FreqResponse(filtcoef, ydata, n, k);
- for (i = 0; i <= k; i ++)
- {
- xdata[i] = 0.5 * (i* 1.0)/(k * 1.0);
- ydata[i] = fabs(ydata[i]);
- gain[i] = ydata[i];
- }
- SetCurrentWindow(3);
- if (BlackAndWhite == 0) SetViewBackground(1);
- BorderCurrentWindow(4);
- SetAxesType(0,0);
- ScalePlotArea( 0.0, 0.0, 0.501, 1.21);
- SetXYIntercepts(0.0,0.0);
- SelectColor(15);
- DrawYAxis(0.05,0);
- LabelYAxis(4, 0);
- DrawXAxis(0.1,0);
- LabelXAxis(1, 0);
- SelectColor(9);
- setlinestyleXX(1,1,1);
- DrawGridX(1);
- DrawGridY(2);
- setlinestyleXX(0,1,1);
- LinePlotData(xdata, ydata, k, 15, 0);
- SelectColor(14);
- TitleWindow("FIR Low Pass Filter Design");
- TitleXAxis("Frequency in Hz");
- TitleYAxis("DB");
-
- for (i = 0; i <= k; i ++)
- ydata[i] = 20 * log(ydata[i]);
- SetCurrentWindow(4);
- if (BlackAndWhite == 0) SetViewBackground(1);
- BorderCurrentWindow(4);
- SetAxesType(0,0);
- ScalePlotArea( 0.0, -100.0, 0.501, 20.01);
- SetXYIntercepts(0.0,-100.0);
- SelectColor(15);
- DrawYAxis(10,0);
- LabelYAxis(2, 0);
- DrawXAxis(0.1,0);
- LabelXAxis(1, 0);
- setlinestyleXX(1,1,1);
- SelectColor(9);
- DrawGridX(1);
- DrawGridY(2);
-
- LinePlotData(xdata, ydata, k, 15, 0);
- SelectColor(14);
- TitleWindow("FIR Low Pass Filter Design");
- TitleXAxis("Frequency in Hz");
- TitleYAxis("DB (20 Log Ampl.)");
- getch();
- CloseSEGraphics();
-
-
-
-
- fprintf(filepointer, "Filter Response \n");
- fprintf(filepointer, "Frequency Gain 20*Log(Gain) \n");
- for (i = 0; i < k; i++){
- xdata[i] = 0.5 * (float)i/(float)k;
- gain[i] = fabs(gain[i]);
- dbgain[i] = 20.0*log10(gain[i]);
- fprintf(filepointer, "%10.6f %10.6f %10.6f\n",
- xdata[i],gain[i],dbgain[i]);
- }
- fclose(filepointer);
-
- }
-