How to plot this signal?
2 views (last 30 days)
Show older comments
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
0 Comments
Accepted Answer
Honglei Chen
on 12 Sep 2014
Edited: Honglei Chen
on 12 Sep 2014
y = filter([a b c],1,x);
plot(y)
0 Comments
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!