Plotting a square wave

How can I plot a square wave of period 2 seconds, with step 0.01 second ,amplitude from -1 to 1 and 50% duty cycle?

3 comentarios

Adam
Adam el 16 de Jun. de 2017
Create it first, then plotting it is trivial with
doc plot
dpb
dpb el 16 de Jun. de 2017
stairs will be easier for square wave; it does the "doubling up" needed by plot automagically (or builds the vectors for plot)
Muhammad Wasim Akhtar Khan
Muhammad Wasim Akhtar Khan el 20 de Jun. de 2017
duty = 50;
t = 0:0.01:8;
f = 0.5;
x = square(2*pi*f*t,duty);
plot(t,x)
axis([0 8 -1.5 1.5])
grid on

Iniciar sesión para comentar.

Respuestas (1)

dpb
dpb el 16 de Jun. de 2017
Editada: dpb el 16 de Jun. de 2017

0 votos

If you have Signal Processing TB, then use square function. Without, you'll have to compute the transition spacings ( linspace should be helpful there) and then stairs will do a plot or create the filled-in x- y- vectors including the "doubled-up" values at the breakpoints.

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 16 de Jun. de 2017

Comentada:

el 20 de Jun. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by