ex11: terminated.

This commit is contained in:
Hugo Sales 2020-10-21 00:28:09 +00:00
parent c86d58de07
commit 1550091fd0
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
%% Inicialização do ambiente
clear ; close all; clc
%% Exercício 11
n = 0:255; %% Inicialização do ambiente
x = cos((20 * pi * n)/256) + cos((200 * pi * n)/256);
figure
subplot(3, 1, 1)
stem(n, x)
subplot(3, 1, 2)
y1 = 0.5 * x + 0.4 * [x(1, 2:size(x, 2)) 0] + 0.3 * [x(1, 3:size(x, 2)) 0 0];
stem(n, y1)
subplot(3, 1, 3)
y2 = zeros(size(n));
y2(1) = y1(1);
y2(2) = y1(2);
for i = 3:255
y2(i) = y1(i) + 0.5 * y2(i - 1) - 0.4 * y2(i - 2);
end
stem(n, y2)