Respuesta aceptada

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 18 de Mayo de 2019

1 voto

use stem() instead of plot() and you'll get it as shown in your image.
n=-10:10; % E.g. use any space
N1 = 2; % E.g. set up at any value
x = zeros(size(n));
for jj=1:numel(n)
if abs(n(jj))<=N1
x(jj)=1;
else
x(jj)=0;
end
end
stem(n, x)
title('\delta function'), shg

2 comentarios

HADIMARGO
HADIMARGO el 18 de Mayo de 2019
thank you sir.
Sulaymon Eshkabilov
Sulaymon Eshkabilov el 18 de Mayo de 2019
Hi Hadimargo,
You are most welcome. It is a pleasure. Good luck.

Iniciar sesión para comentar.

Más respuestas (2)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 18 de Mayo de 2019

1 voto

Hi,
here is one of the possible solutions:
n=-10:10; % E.g. use any space
N1 = 2; % E.g. set up at any value
x = zeros(size(n));
for jj=1:numel(n)
if abs(n(jj))<=N1
x(jj)=1;
else
x(jj)=0;
end
end
plot(n, x, 'k-', 'linewidth', 2), grid on
title('\delta function'), shg
Good luck.

1 comentario

HADIMARGO
HADIMARGO el 18 de Mayo de 2019
tnx for answering . but the shape is not correct:
correct shape is :

Iniciar sesión para comentar.

Ghenam Dahmane
Ghenam Dahmane el 10 de Mzo. de 2020

0 votos

take this solution
n = -5:1:5;
s = zeros(size(n));
for i = 1:length(n)
if n(i)< -2
s(i) = 0;
elseif -2<=n(i)& n(i)<=2
s(i) = 1;
else
s(i) = 0;
end
end
stem(n,s,'black','Linewidth',1.5), grid on

Categorías

Preguntada:

el 18 de Mayo de 2019

Respondida:

el 10 de Mzo. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by