Plot a PWM Signal
Afficher commentaires plus anciens
Hello my name is Fattah, i am new in Matlab.
Can anybody here do me a favor? I want to plot a PWM Signal that have frequency = 490 Hz, Amplitude = 0 - 5, and Duty Cycle 50%. I've already try this : https://www.mathworks.com/help/signal/ref/square.html, but i have no idea how to set the frequency and the amplitude.
Thank you.
Réponses (1)
Ameer Hamza
le 18 Juin 2020
Modifié(e) : Ameer Hamza
le 18 Juin 2020
Try this
f = 490;
A = 5;
t = linspace(0, 0.01, 10000);
y = A*square(2*pi*f*t);
plot(t, y)
xlabel('time');
ylabel('Amplitude');

4 commentaires
Muhammad Fattah Al Fattika
le 18 Juin 2020
Ameer Hamza
le 18 Juin 2020
Change the line to
y = A*(square(2*pi*f*t)+1)/2;
Muhammad Fattah Al Fattika
le 18 Juin 2020
Ameer Hamza
le 18 Juin 2020
I am glad to be of help!!!
Catégories
En savoir plus sur MATLAB dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!