Discrete Time Plotting x[n]+x[-n] Using Stem
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, I have a signal which is u[n]-u[n-1], where n is 0<n<5. I need to plot the graph of x[n]+x[-n]. I can plot them like x[n] and x[-n] but I can not plot their summation.
!! I MEAN IT DOES NOT SHOW ME THE RESULTS BEFORE 0, IT JUST SHOWS ME THE VALUES AFTER 0 !!
How can I do it? Thanks for your sugggestions.
2 comentarios
Setsuna Yuuki.
el 12 de Nov. de 2020
Did you try using hold on?
stem(x[n]); hold on;
stem(x[-n]);
stem(x[n-5]);
Respuestas (1)
matt
el 1 de Dic. de 2022
Editada: matt
el 1 de Dic. de 2022
The question is unclear in definiton of signal. assuming x[n] = u[n]-u[n-1], u[n] is heavyside function, function to plot is y[n] = x[n]-x[-n]
nn = (eps:.1:5-eps); %eps starts interval just right of zero and ends interval just right of interval
syms n
u = heaviside(n); % define u
x = subs(u,n,nn) - subs(u,n,nn-1);
x2 = subs(u,n,-nn) - subs(u,n,-nn-1);
stem(nn,x+x2) % plot y
0 comentarios
Ver también
Categorías
Más información sobre Polynomials en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!