How do filtic and filter functions work ?

10 次查看(过去 30 天)
% y[n]+y[n-1]-6y[n-2]=x[n]
% x[n]=8u[n]
% y[-1]=1, y[-2]=-1
  4 个评论
Jan
Jan 2018-4-30
Please take the time to ask the question more clearly.

请先登录,再进行评论。

回答(1 个)

Valeria Delgado
Valeria Delgado 2020-10-27
% 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);

类别

Help CenterFile Exchange 中查找有关 Signal Processing Toolbox 的更多信息

标签


Translated by