Skip to content
Snippets Groups Projects
Commit 1abb06e3 authored by HASHIM--FAROOQI Medjibe's avatar HASHIM--FAROOQI Medjibe
Browse files

Upload New File

parent 4e45ee83
Branches
No related tags found
No related merge requests found
g = 0.6;
tau = 3;
N = 50;
a = [1, zeros(1, tau - 1), g];
b = 1;
x = [1, zeros(1, N - 1)];
h = filter(b, a, x);
stem(0:N-1, h, 'filled');
title('Réponse impulsionnelle h(k)');
xlabel('k');
ylabel('h(k)');
grid on;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment