fir系数的实现算法 从scilab里偷来的
function [hn]=eqfir(nf,bedge,des,wate)
//<hn>=eqfir(nf,bedge,des,wate)
//minimax approximation of multi-band, linear phase, fir filter
// nf :number of output filter points desired
// bedge :mx2 matrix giving a pair of edges for each band
// des :m-vector giving desired magnitude for each band
// wate :m-vector giving relative weight of error in each band
// hn :output of linear-phase fir filter coefficients
//!
//author: c. bunks date: 18 june 1988
// copyright inria
//get number of cosines
nc=int(nf/2);
if nf-2*nc<>0 then,
flag=0;
nc=nc+1;
else,
flag=1;
end,
//make frequency grid, desired function, and weight function
[nb,c2]=size(bedge);
ngp=nc*16;
b1=bedge(:,1);
b2=bedge(:,2);
sb=sum(b2-b1);
delf=sb/ngp;
bp=round((b2-b1)/delf);
bsum=0;
for k=1:nb,
bpk=bp(k);
et=b2(k)-b1(k);
fg(bsum+1:bsum+bpk)=b1(k)*ones(1:bpk)+(0:bpk-1)*et/(bpk-1);
ds(bsum+1:bsum+bpk)=des(k)*ones(1:bpk);
wt(bsum+1:bsum+bpk)=wate(k)*ones(1:bpk);
bsum=bsum+bpk;
end,
//adjust values of ds and wt if filter is of even length
if flag==1 then,
fgs=maxi(size(fg));
if fg(fgs)>.5-%eps then,
fg=fg(1:fgs-1);
ds=ds(1:fgs-1);
wt=wt(1:fgs-1);
end,
cf=cos(%pi*fg);
ds=ds./cf;
wt=wt.*cf;
end,
//call remez
[an]=remezb(nc,fg,ds,wt);
//obtain other half of filter coefficients (by symmetry)
if flag==1 then,
hn(1)=.25*an(nc);
hn(2:nc-1)=.25*(an(nc:-1:3)+an(nc-1:-1:2));
hn(nc)=.5*an(1)+.25*an(2);
hn(nc+1:2*nc)=hn(nc:-1:1);
else,
hn=an(nc:-1:2)/2;
hn(nc)=an(1);
hn(nc+1:2*nc-1)=hn(nc-1:-1:1);
end,
endfunction