3er laboratorio hallando las raices control 1

3
LABORATORIO HALLANDO LAS RAICES: NOMBRE: JAMES ROLLINSTHON SILVA FELIX 1) EJERCICIO #1 >> v =[-6 6 -6 6];axis(v);axis('square') >> a =[1 1 0]; a = 1 1 0 >> b=[1 4 16]; b = 1 4 16 >> c=conv(a,b); c = 1 5 20 16 0 >> den=c; den = 1 5 20 16 0 >> roots(b) ans = -2.0000 + 3.4641i -2.0000 - 3.4641i >> num=[1 3]; >> den=[1 5 20 16 0]; >> rlocus(num,den)

Upload: yousafvalderramaluna

Post on 25-Jan-2016

217 views

Category:

Documents


3 download

DESCRIPTION

LABORATORIO DE ELECTRICOS

TRANSCRIPT

Page 1: 3er Laboratorio Hallando Las Raices Control 1

LABORATORIO HALLANDO LAS RAICES:

NOMBRE: JAMES ROLLINSTHON SILVA FELIX

1) EJERCICIO #1

>> v =[-6 6 -6 6];axis(v);axis('square')>> a =[1 1 0];

a = 1 1 0

>> b=[1 4 16];

b = 1 4 16

>> c=conv(a,b);

c = 1 5 20 16 0

>> den=c;

den = 1 5 20 16 0

>> roots(b)

ans =

-2.0000 + 3.4641i -2.0000 - 3.4641i

>> num=[1 3];>> den=[1 5 20 16 0];>> rlocus(num,den)

Page 2: 3er Laboratorio Hallando Las Raices Control 1

v=[-6 6 -6 6]; axis(v); axis('square'); grid; title('lugar de las raices de G(s)=k(s+3)/[s(s+1)(s^2+4s+16)]')

Page 3: 3er Laboratorio Hallando Las Raices Control 1

EJERCICIO 2

>> m=[1];>> den=[1 1.1 10.3 5 3];>> rlocus(num,den);

% lugar de las raíces

m=[1];den=[1 1.1 10.3 5 3];rlocus(num,den);plot(r,'0')r=rlocus(num,den);plot(r,'0')plot(r,'o');v=[-6 6 -6 6];axis(v);grid;title('lugar de las raices de G(s)=k(s+3)/[s(s+1)(s^2+4s+16)]');xlabel('eje Real');ylabel('eje imaginario')