How do filtic and filter functions work ?
이전 댓글 표시
% y[n]+y[n-1]-6y[n-2]=x[n]
% x[n]=8u[n]
% y[-1]=1, y[-2]=-1
댓글 수: 4
Jan
2018년 4월 30일
The question is not clear. What is the relation between the header and the code?
Ahmed Grera
2018년 4월 30일
Ahmed Grera
2018년 4월 30일
Jan
2018년 4월 30일
Please take the time to ask the question more clearly.
답변 (1개)
Valeria Delgado
2020년 10월 27일
0 개 추천
% try
%y[n]+y[n-1]-6y[n-2]=x[n]
% x[n]=8u[n]
% y[-1]=1, y[-2]=-1
%Para n=3
x=[8 8 8 8]
num=[1]
den=[1 1 -6]
ic=filtic(num,den,[1 -1]);
y=filter(num,den,x,ic);
카테고리
도움말 센터 및 File Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!