フィルターのクリア

how can i creat function of " transfer d'un filtre en Matlab étap par étap"

2 ビュー (過去 30 日間)
Hamrit
Hamrit 2012 年 5 月 11 日
Exp: H(z)=[1-(z power(-6))]/ [1-(z power(-2))] I'm zero in this function please help me with Detail explication

回答 (1 件)

Wayne King
Wayne King 2012 年 5 月 11 日
B = [1 0 0 0 0 0 -1];
A = [1 0 -1];
% view magnitude response
fvtool(B,A)
% view pole-zero plot
zplane(B,A)
% filter data with it
outputdata = filter(B,A,inputdata);

カテゴリ

Help Center および File ExchangeVerification, Validation, and Test についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by