aboutsummaryrefslogtreecommitdiffstats
path: root/lab5/RTDSP/Matlab/gen_filter.m
blob: 618d7198372acf43e0bd1b854fb2a703e5948e7c (plain)
1
2
3
4
5
6
7
8
9
10
11
Fs = 8000;
[b,a] = elliptical (Fs);
freqz(b, a);

fileID = fopen('coeff2.txt','w');
fprintf(fileID, 'double a[] = {');
fprintf(fileID, '%.15e, ', a);
fprintf(fileID, '};\ndouble b[] = {');
fprintf(fileID, '%.15e, ', b);
fprintf(fileID, '};');
fclose(fileID);