plot Discrate time signal
Mostrar comentarios más antiguos
Please give me a sample completion code discrate time signal
1 comentario
Star Strider
el 12 de En. de 2021
Reprise of: How to Plot a Continues Tiime Signal
Respuestas (1)
x = sort(rand(1,10));
y = rand(1,10);
stem(x, y)
2 comentarios
Muhammad Fauzan
el 12 de En. de 2021
u = @(t) (t>=0);
x = sort(rand(1,10)*5-2);
y = rand(1,10);
stem(x, y)
hold on
y2 = y .* u(1-x);
stem(x, y2, 'r')
hold off
Categorías
Más información sobre Descriptive Statistics en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

