Plotting a Response of the Following system

2 次查看(过去 30 天)
How can i plot the response of this system? 𝑦[𝑛] = −𝑦[𝑛 − 1] + 5𝑥[𝑛] + 2𝑥[𝑛 − 3]. From an input 𝑥[𝑛] = [5, 1, 2, 3, 1, 0, 1, 2, −1, ]

采纳的回答

Chunru
Chunru 2021-9-22
% 𝑦[𝑛] = −𝑦[𝑛 − 1] + 5𝑥[𝑛] + 2𝑥[𝑛 − 3].
b = [5 0 0 2]; % 5x(n), 2x(n-3)
a = [1 1]; % y(n) + y(n-1)
% From an input 𝑥[𝑛] = [5, 1, 2, 3, 1, 0, 1, 2, −1, ]
x = [5, 1, 2, 3, 1, 0, 1, 2, -1];
y = filter(b, a, x);
stem(y)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by