Instituto Tecnológico de Tuxtla Gutiérrez

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

INSTITUTO TECNOLÓGICO DE TUXTLA GUTIÉRREZ

CONTROL AVANZADO

POLOS Y CEROS (MATLAB)

PÉREZ NIETO CARLOS ANTONIO (15270892)

PROFESOR:

LUIS TOMÁS GARCIA ANDRADE

Tuxtla Gutiérrez, Chiapas. 02/10/2020


>> num = ([1 2]);

>> den = conv([1 1],[1 -3]);

>> G = tf(num,den)

G=

s+2

-------------

s^2 - 2 s - 3

Continuous-time transfer function.

>> pzmap(num,den)

>>
>> num = ([0 1]);

>> den = ([1 1 1]);

>> G = tf(num,den)

G=

-----------

s^2 + s + 1

Continuous-time transfer function.

>> pzmap(num,den)

>>
>> num = ([1 0]);

>> den = conv([0 1],[1 -2]);

>> G = tf(num,den)

G=

-----

s-2

Continuous-time transfer function.

>> pzmap(num,den)
>> num = ([0 1]);

>> den = conv([0 1],[1 4]);

>> G = tf(num,den)

G=

-----

s+4

Continuous-time transfer function.

>> pzmap(num,den)

>>

You might also like