emersonwind
Newbie level 1

i found some file in the web about the CIC filter design.i confuse the question:can we use the convolution to design CIC?
ep.in the matlab
R=3;
M=1;
N=5;
hrec = ones(1,R*M);
tmph = hrec;
for k=1:N-1
tmph = conv(hrec, tmph);
end;
hcic = tmph;
hn=hcic/norm(hcic);
is this right or not?
in my view, i think there are some difference with the logic design.
ep.in the matlab
R=3;
M=1;
N=5;
hrec = ones(1,R*M);
tmph = hrec;
for k=1:N-1
tmph = conv(hrec, tmph);
end;
hcic = tmph;
hn=hcic/norm(hcic);
is this right or not?
in my view, i think there are some difference with the logic design.