[Contents] [TitleIndex] [WordIndex

Scilab does not have a function to compute the coefficients of a filter using the frequency sampling method. The fsfirlin function comes closest to doing this, however it computes the magnitude of the frequency response of the filter and not the coefficients. The fir2 function in Matlab computes the filter coefficients.

I have been studying filter design using frequency sampling from the following sources:

  1. Lecture series on DSP: http://www.youtube.com/course?list=PL9567DFCA3A66F299&category_name=University%2FEngineering%2FElectrical%2520Engineering&feature=edu

  2. Rabiner's original paper on frequency sampling filters: http://www.math.unipd.it/~alvise/CS_2008/APPROSSIMAZIONE_2009/MFILES/Remez.pdf

  3. Rick Lyons book: http://www.amazon.com/Understanding-Digital-Signal-Processing-Richard/dp/0201634678

I'm currently writing the code to implement the algorithm in this paper.


2022-09-08 09:26