eletronica
>> 'Como vai voce?' ans =
Como vai voce?
>> -3.96 ans = -3.9600
>> -4+7i ans = -4.0000 + 7.0000i
>> -5-6j ans = -5.0000 - 6.0000i
>> (-4+7j)+(-5-6j) ans = -9.0000 + 1.0000i
>> M=5
M = 5
>> N=6
N = 6
>> P=M+N
P = 11
>> 3*5 ans = 15
2) Polinômios
>> P1=[1 7 -3 23]
P1 =
1 7 -3 23
>> P2=[3 5 7 8];
>> P3=poly([-2 -5 -6])
P3 =
1 13 52 60
>> P4=[5 7 9 -3 2]
P4 =
5 7 9 -3 2
>> raizes_P4=roots(P4)
raizes_P4 =
-0.8951 + 1.2351i -0.8951 - 1.2351i 0.1951 + 0.3659i 0.1951 - 0.3659i
3) Expansão em frações Parciais
>> numf=[7 9 12];
>> denf=conv(poly([0 -7]),[1 10 1001]);
>> [K, p, k] = residue(numf, denf)
K =
0.0204 - 0.1105i 0.0204 + 0.1105i -0.0426 0.0017
p =
-5.0000 +31.2410i -5.0000 -31.2410i -7.0000 0
k =
[]
>> numy=32;
>> deny=poly([0 -4 -8]);
>> [r, p, K] = residue(numy, deny)
r =
1 -2 1
p =
-8 -4 0
K =
[]
4) Funções de Transferência
4.1) Método Vetorial, Forma Polinomial:
>> 'MetodoVetorial, Forma Polinomial'
ans =
MetodoVetorial, Forma Polinomial
>> numf=150*[1 2 7]
numf =
150 300 1050
>> denf=[1 5 4 0]
denf =
1 5 4 0
>> 'F(s)'
ans =
F(s)
>> F=tf(numf,denf)
F = 150 s^2 + 300 s + 1050 ---------------------- s^3 + 5 s^2 + 4 s Continuous-time transfer function.
>> clear
4.2) Método Vetorial, Forma Fatorada:
>> 'Metodo Vetorial, Forma Fatorada'
ans =
Metodo Vetorial, Forma Fatorada
>> numg=[-2 -4]
numg =
-2 -4
>> deng=[-7 -8 -9]
deng =
-7 -8 -9
>> K=20
K =
20
>> 'G(s)'
ans =
G(s)
>> G=zpk(numg,deng,K)
G = 20 (s+2) (s+4)