Scilab Function

remezb - Minimax approximation of magnitude response

Calling Sequence

[an]=remezb(nc,fg,ds,wt)

Parameters

Description

Minimax approximation of a frequency domain magnitude response. The approximation takes the form h = sum[a(n)*cos(wn)] for n=0,1,...,nc. An FIR, linear-phase filter can be obtained from the the output of the function by using the following commands

         hn(1:nc-1)=an(nc:-1:2)/2;
         hn(nc)=an(1);
         hn(nc+1:2*nc-1)=an(2:nc)/2;
   

Examples

See Also

Author