how do plot x(n)=u(n-2)-u(n-5)
108 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mehdi s
el 3 de Nov. de 2022
Respondida: Ghadeer
el 12 de Oct. de 2023
hello i need plot for signal x(n)=u(n-2)-u(n-5) thanks.
0 comentarios
Respuesta aceptada
Maik
el 5 de Nov. de 2022
n = (-20:20);
u_n = n>=0;
u_n_2 = n>=2;
u_n_5 = n>=5;
u_diff = u_n_2 - u_n_5;
subplot(3,1,1); stem(n,u_n_2);xlim([-15 15]); ylim([-2 2])
subplot(3,1,2); stem(n,u_n_5);xlim([-15 15]); ylim([-2 2])
subplot(3,1,3); stem(n,u_diff);xlim([-15 15]); ylim([-2 2])
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Subplots 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!