how can i get a square wave in matlab ?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Chad Gray
am 22 Feb. 2016
Kommentiert: Chad Gray
am 22 Feb. 2016
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!
0 Kommentare
Akzeptierte Antwort
Jos (10584)
am 22 Feb. 2016
Something like this?
t = linspace(0,20,1000) ;
T = 3 ;
x = sign(sin(2*pi*(1/T)*t)) ;
plot(t,x,'b-')
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!