Filter löschen
Filter löschen

How to express ZOH transfer function in Matlab?

15 Ansichten (letzte 30 Tage)
Siyu He
Siyu He am 16 Aug. 2013
I am tring to express ZOH transfer funcation in S domain and bode plot it. The transfer functino is shown below:
(1-exp(-s*Ts))/s
The question is how to express it, is there any function related to it?
Thanks.
  6 Kommentare
Azzi Abdelmalek
Azzi Abdelmalek am 16 Aug. 2013
Which image?
Siyu He
Siyu He am 16 Aug. 2013
I don't know how to upload image and the tf is shown by symbolic expression now.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Arkadiy Turevskiy
Arkadiy Turevskiy am 20 Aug. 2013
s=tf('s');
Ts=0.1 %replace with desired value
sys=(1-exp(-s*Ts))/s
bode(sys)
  3 Kommentare
Arkadiy Turevskiy
Arkadiy Turevskiy am 21 Aug. 2013
In 10b:
s=tf('s');
Ts=0.1
sys1=exp(-Ts*s)/s
sys2=1/s
sys=ss(sys2)-ss(sys1);
bode(sys)
Siyu He
Siyu He am 23 Aug. 2013
Thanks for your help, it works.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Entering Commands 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!

Translated by