MATLAB: How can i get a square wave in matlab

MATLABplottingsquare wave

I want to plot a periodic square wave in matlab and the period T has to be 3. How can i plot a sqaure wave the repeats itself every (T=3) ? help please and thank you!

Best Answer

Something like this?
t = linspace(0,20,1000) ;
T = 3 ;
x = sign(sin(2*pi*(1/T)*t)) ;
plot(t,x,'b-')
Related Question