Simulate LTI Signal Output Signal
1 次查看(过去 30 天)
显示 更早的评论
Can anyone help me with part b. of the question? I'm having a hard time using matlab to simulate the output of this LTI system. I can do this by hand and have attached the question/answer for anyone to help. Thank you for your assistance.
My code:
d = rand(1,50); x = 7.*d - 7.*(d-2); S = zeros(1,length(x)); for n = 4:length(x) S(n)= x(n)- x(n-1) + 2*x(n-3); end; S
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!