Vous êtes sur la page 1sur 7

SEBASTIAN ORTIZ

3ro B

A=[1 2 3;3 4 5; 6 7 8]

A=

>> B=[1 2 3]

B=

>> C=[4; 5; 6;]

C=

4
5
6

>>
>> a=1 ; b=4 ; c=13 ;
>> x1=(-b+sqrt(b^2-4*a*c))/(2*a)

x1 =

-2.0000 + 3.0000i

>> x2=(-b-sqrt(b^2-4*a*c))/(2*a)

x2 =

-2.0000 - 3.0000i

>> p=[2 7 1]

p=

q= [2 3 4 5]

q=

>>
>> polyval (p,2)

ans =

23

>> p=[1 5 8 1];


>> polyval (p,2)

ans =

45

>> p=[1 -3 9 13];


>> roots(p)

ans =

2.0000 + 3.0000i
2.0000 - 3.0000i
-1.0000

>> raices=[-1 2+3i 2-3i];


>> p=[1 -2 1];p2=[1 1];
>> conv(p1,p2)
Undefined function or variable 'p1'.

>> p1=[1 -2 1];p2=[1 1];


>> conv(p1,p2)

ans =

1 -1 -1

>> % division
>> [c,r]=deconv(p1,p2)

c=

1 -3

r=

>> t=[0:0.5:4]

t=

Columns 1 through 7

0 0.5000 1.0000 1.5000 2.0000 2.5000 3.0000

Columns 8 through 9

3.5000 4.0000

>> % introducimos los datos del ejemplo


>> k=10 ; v1=[1 2 3]; v2=[4 5 6];
>> k*v1

ans =

10 20 30

>> v1+v2

ans =

>> v1.*v2

ans =

4 10 18

>> t=[0:0.1:10];
>> y=10*exp(-t).*sin(5*t) ;
>> plot(t,y)
>> grid
>> xlabel(' tiempo(s)')
>> ylabel(' y(t) ')
>> title('Senoide amortiguada')

t=[0:0.1:10];
y=10*exp(-t).*sin(5*t) ;
>> plot(t,y,'r+')

t=[0:pi/180:4*pi];
>> y1=sin(t);
>> y2=cos(t);
>> plot(t, y1, 'r o', t, y2, 'g -')

t=[0:pi/180:4*pi];
>> y1=sin(t);
>> y2=cos(t);
>> plot(t, y1, 'r o', t, y2, 'g -')
>> t=0:0.1:10;
>> subplot(2,2,1)
>> y1=exp(-t);
>> plot(t,y1)
>> subplot(2,2,2)
>> y2=t.*exp(-t);
>> plot(t,y2)
>> subplot(2,2,3)
>> y3=exp(-t).*cos(t);
>> plot(t,y3)
>> subplot(2,2,4)
>> y4=exp(t).*cos(t);
>> plot(t,y4)

Vous aimerez peut-être aussi