Implement a square wave in matlab

9 vues (au cours des 30 derniers jours)
sanane beadam
sanane beadam le 8 Mar 2016
Modifié(e) : Explorer le 8 Mar 2016
hello friends,i need help and i havent any idea what i have to do thats why someone can help me

Réponses (1)

Explorer
Explorer le 8 Mar 2016
Modifié(e) : Explorer le 8 Mar 2016
The square wave with amplitude 1, fundamental frequency 10 pi radian per second (5 Hz) and phase of 5 pi can be generated by using the following commands:
A=1;
fo=10*pi;
w=5*pi;
t=0:0.001:1;
sq=A*square(fo*t + w);
plot (t, sq)
axis ([0 1 -2 2])

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by