How to express ZOH transfer function in Matlab?
    10 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
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
Respuesta aceptada
  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
    
 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)
Más respuestas (0)
Ver también
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!


