Borrar filtros
Borrar filtros

How to write the matlab codes for the following transfer function

2 visualizaciones (últimos 30 días)
phoenix
phoenix el 3 de Ag. de 2018
Editada: Star Strider el 3 de Ag. de 2018
T(z)=(5-G(z)*z^-5)/(1-5*G(z)*z^-5);
where G(z) is a separate transfer function in Z domain.

Respuestas (1)

Aquatris
Aquatris el 3 de Ag. de 2018
Editada: Aquatris el 3 de Ag. de 2018
Assuming G(z) is a SISO(single input-single output) system, here is the code;
z = tf('z');
G = z/(z+1);
T = minreal(5-G*z^-5)/(1-5*G*z^-5);
You need to specify the sample time of the system by simply modifying the code;
z = tf('z',dt)

Categorías

Más información sobre State-Space Control Design and Estimation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by