How to express ZOH transfer function in Matlab?

10 visualizaciones (últimos 30 días)
Siyu He
Siyu He el 16 de Ag. de 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 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 16 de Ag. de 2013
Which image?
Siyu He
Siyu He el 16 de Ag. de 2013
I don't know how to upload image and the tf is shown by symbolic expression now.

Iniciar sesión para comentar.

Respuesta aceptada

Arkadiy Turevskiy
Arkadiy Turevskiy el 20 de Ag. de 2013
s=tf('s');
Ts=0.1 %replace with desired value
sys=(1-exp(-s*Ts))/s
bode(sys)
  3 comentarios
Arkadiy Turevskiy
Arkadiy Turevskiy el 21 de Ag. de 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 el 23 de Ag. de 2013
Thanks for your help, it works.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Dynamic System Models en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by