MATLAB: How to plot this signal

delay unit signal

I'm trying to plot this signal but I'm not sure where to start.
y(n) = ax(n) + bx(n 1) + cx(n 2)
where a=b=c=1/3

Best Answer

y = filter([a b c],1,x);
plot(y)
Related Question