Math Wizards
ProductsDownloadMailing ListStatsQuotesGuest BookLinksForumGraphicsContact UsOrder

function [ rf , rm ] = do_remez( order , f , m )

disp('Designing filter ...');

b = remez( order , f , m );

b(:)  % print

[ rm , rf ] = freqz( b , 1 , 512 );

rm = abs( rm );
rf = rf / pi;

disp('Done ...');

Back to The MathWizards Home Page.

This page, and all contents, are Copyright © 1996 by The MathWizards
ProductsDownloadMailing ListStatsQuotesGuest BookLinksForumGraphicsContact UsOrder