Informe de Tele #1
Informe de Tele #1
Informe de Tele #1
INFORME N°1:
ALUMNO CÓDIGO
PRACTICA Nº 1
I. OBJETIVO:
INTRODUCCIÓN TEÓRICA:
Una señal continua en el tiempo es periódica si los valores se repiten cada T0 unidades: f (t+T0)=f
(t).
Período fundamental o periodo T0
Frecuencia N = 1/ T0 se mide en ciclos por unidad de
Tiempo (Hz= ciclos por segundo) frecuencia angular, pulsación o frecuencia w0 = 2π / T0.
1. MATLAB
2. PC Pentium II-actual.
3. Manual de MATLAB.
III. PROCEDIMIENTO:
1. Desarrolle en el programa principal de MATLAB los siguientes ejemplos y anotar sus resultados.
Funciones matemáticas: y2 = 2
>> x=sqrt(2)/2 y3 = 3
y = 0.7854 c= 6
ans = 0 imag_c1 = -2
x=linspace(0,4*pi,60); title('2sen(x)cos(x)sen(2x)')
y=sin(x); figure(6)
figure(1) plot3(y,z,x),grid
plot(x,y)
Generación de señales discontinuas
x=linspace(0,16,100);
y=sin(x);
z=(y>=0).*y;
z=z+0.5*(y<0);
z=(x<=14).*z;
plot(x,z)
xlabel('x'),ylabel('Z=f(x)')
title('señal discontinua')
Manipulación de gráficos
x=linspace(0,4*pi,60);
y=sin(x);
z=cos(x);
plot(x,y)
hold on
plot(x,z,'m')
hold off
Subdivisión de ventanas de graficas
x=linspace(0,4*pi,60);
y=sin(x);
z=cos(x);
a=2*sin(x).*cos(x);
b=sin(x)./(cos(x)+eps);
subplot(2,2,1)
subplot(2,2,2)
subplot(2,2,3)
subplot(2,2,4)
Funciones matemáticas
>> y=rem(23,4)
>> x=sqrt(2)/3
y= 3
x = 0.4714
>>
>> y=acos(x) x=2.6,y1=fix(x),y2=floor(x),y3=ceil(x
),y4=round(x);
y = 1.0799
x = 2.6000
>> y_deg=y*180/pi%convierte
grados a radianes y1 = 2
y_deg = 61.8745 y2 = 2
>> x=sqrt(3^2+4^2)
y3 = 3
x= 5
números complejos
>> c3=sqrt(-2)
>> a=1;b=3;c=5
c3 =
c= 5
0 + 1.4142i
>> x1=(-b+sqrt(b^2-4*a*c))/(2*a)
>> c4=6+sin(.5)*i
x1 = -1.5000 + 1.6583i
c4 =
>> x2=(-b-sqrt(b^2-4*a*c))/(2*a)
6.0000 + 0.4794i
x2 = -1.5000 - 1.6583i
>> c5=6+sin(.5)*j
>> a=1,b=3,c=12;
c5 =
>> x1=(-b+sqrt(b^2-4*a*c))/(2*a)
6.0000 + 0.4794i
x1 = -1.5000 + 3.1225i
>> C1=1-2i
>> x2=(-b-sqrt(b^2-4*a*c))/(2*a)
C1 =
x2 = -1.5000 - 3.1225i
1.0000 - 2.0000i
>> a*x1^2+b*x1+c,
>> c1=1-2j
ans = 0
c1 =
>> a*x2^2+b*x2+c
1.0000 - 2.0000i
ans = 0
>> mag_c1=abs(c1)
>> C1=1-2i mag_c1 = 2.2361
>> deg_c1=angle_c1*180/pi
C1 = 1.0000 - 2.0000i
deg_c1 = -63.4349
>> C2=3*(2-sqrt(-1)*3)
>> real_c1=real(c1)
C2 =
real_c1 = 1
6.0000 - 9.0000i
>> imag_c1=imag(c1)
imag_c1 = -2
Construccion de arrays
>> x=[0 .1*90 .2*90 .3*90 .4*90 .5*90 .6*90 .7*90 .8*90 .9*90 90]
x=
Columns 1 through 8
0 9.0000 18.0000 27.0000 36.0000 45.0000 54.0000 63.0000
Columns 9 through 11
72.0000 81.0000 90.0000
>> y=cos(x*pi/180)
y=
Columns 1 through 8
1.0000 0.9877 0.9511 0.8910 0.8090 0.7071 0.5878 0.4540
Columns 9 through 11
0.3090 0.1564 0.0000
>> x(2)
ans =
9
>> x(4)
ans =
27
>> x(6)
ans =
45
>> x=(0:0.1:1)*90
x=
Columns 1 through 8
0 9.0000 18.0000 27.0000 36.0000 45.0000 54.0000 63.0000
Columns 9 through 11
72.0000 81.0000 90.0000
>> x=linspace(0,90,11) % Ambos arrays deben de ser similares
x=
0 9 18 27 36 45 54 63 72 81 90
i.
x=[0 .1*10 .2*10 .3*10 .4*10 .5*10 .6*10 .7*10 .8*10 .9*10 10]
x=
0 1 2 3 4 5 6 7 8 9 10
>> y=cos(x)
y=
Columns 1 through 8
1.0000 0.5403 -0.4161 -0.9900 -0.6536 0.2837 0.9602 0.7539
Columns 9 through 11
-0.1455 -0.9111 -0.8391
>> x(2)
ans =
1
>> x(8)
ans =
7
>> x=(0:0.1:1)*10
x=
Columns 1 through 8
0 1.0000 2.0000 3.0000 4.0000 5.0000 6.0000 7.0000
Columns 9 through 11
8.0000 9.0000 10.0000
>> x=linspace(0,10,11) % Ambos arrays deben de ser similares
x=
0 1 2 3 4 5 6 7 8 9 10
1) Escribir en el block de notas o depurador del MATLAB los siguientes ejercicios y copiar en el
programa principal, para graficar las funciones periódicas:
x=linspace(0,8*pi,100); y=sin(x);
figure(1) figure(4)
plot(x,y) plot(y,z)
z=cos(x); figure(5)
figure(2) plot(x,y,x,2*y.*z,'--')
plot(x,z,x,y) grid
title('2sen(x)cos(x)sen(2x)')
figure(6)
plot3(y,z,x),grid
Generaciopn de señales discontinuas
x=linspace(0,20,200);
y=sin(x);
z=(y>=0).*y;
z=z+0.5*(y<0);
z=(x<=14).*z;
plot(x,z)
xlabel('x'),ylabel('Z=f(x)')
title('señal discontinua')
Manipulacion de graficos
x=linspace(0,8*pi,100);
y=sin(x);
z=cos(x);
plot(x,y)
hold on
plot(x,z,'m')
hold off
Subdivision de ventana de graficas
x=linspace(0,8*pi,100);
y=sin(x);
z=cos(x);
a=2*sin(x).*cos(x);
b=sin(x)./(cos(x)+eps);
subplot(2,2,1)
subplot(2,2,2)
plot(x,z),axis([0 4*pi -1 1]),title('cos(x)')
subplot(2,2,3)
subplot(2,2,4)
3 Presentar su informe final con una breve introducción teórica, con el resultado
de cada ejercicio plantado y sus modificaciones experimentales.
Desarrollado al principio.