Bode diagram of a rectangular pulse
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, how can I plot a Bode diagram of a rectangular pulse (rectangular pulse defined in time domain)? Thanks a lot!
0 Kommentare
Akzeptierte Antwort
Teja Muppirala
am 30 Mai 2011
A rectangular pulse is a step function minus a delayed step function:
T = 1;
s = tf('s');
bode(ss(1/s) - ss(1/s*exp(-T*s)))
2 Kommentare
Weitere Antworten (1)
bym
am 29 Mai 2011
I think you are going to have to provide more information. in the mean time, try:
bode % with no arguments
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!