필터 지우기
필터 지우기

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 CenterFile Exchange에서 Verification, Validation, and Test에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by