Plot unit step function
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Corinne Dale
el 3 de Oct. de 2018
Comentada: Star Strider
el 19 de Sept. de 2023
I'm trying to plot the signal u(t)-u(t-1) without heaviside in MATLAB. I've tried to use the if loop but couldn't figure it out.
Respuesta aceptada
Star Strider
el 3 de Oct. de 2018
You can use a ‘logical indexing’ approach:
ustp = @(t) +(t>0); % Simple Unit Step Function
t = linspace(-5, 5);
figure
plot(t, ustp(t)-ustp(t-1))
grid
I will let you figure out how it works.
3 comentarios
Vicky
el 19 de Sept. de 2023
Can you explain how you wrote "@(t) +(t>0)"? It worked perfectly but I'm unsure what the @ is doing here. Thank you so much!
Star Strider
el 19 de Sept. de 2023
@Vicky — That is an anonymous function. It works the same way other functions do, and can be called similarly. The ‘@’ creates its function handle.
Más respuestas (0)
Ver también
Categorías
Más información sobre Pie Charts 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!