Lab 1 Comunicaciones-I
Lab 1 Comunicaciones-I
Lab 1 Comunicaciones-I
Table of Contents
Integrantes: ........................................................................................................................ 1
Parte N°1 ........................................................................................................................... 1
Parte N°2 ........................................................................................................................... 3
Parte N°3 ........................................................................................................................... 5
Integrantes:
Pedro Josue Flores Velasquez 20152500042
Parte N°1
Ejercicio 1 Grafique cada una de las siguientes señales agregando, (nombre al eje X, nombre al eje Y,
titulo a la señal que está graficando y rejilla)
t=linspace(0,1,1000);
x=[sin(4*pi*t)+2].*cos(40*pi*t);
y=cos(20*pi*t)+cos(22*pi*t);
w=10*(cos(88*pi*t-0.4*pi));
z=[sin(4*pi*t)]./(4*pi*t);
r=exp(-2*t).*cos(10*pi*t);
g=3*[sin(3*sqrt(2*t))]+7.*[cos(6*sqrt(2*t))];
g2=3*[sin(3*sqrt(2*t))+5]+7*[cos(6*sqrt(2*t))+3];
g3=3*[sin(3*sqrt(2*t))+pi]+7*[cos(6*sqrt(2*t))+2*pi];
subplot(3,3,1)
plot(t,x);
grid on
title('x(t)=(sin(4\pi t)+2)cos(40\pi t)'), xlabel('Tiempo (s)'),
ylabel ('Amplitud')
subplot (3,3,2)
plot(t,y);
grid on
title('x(t)=cos(20\pi t)+cos(22\pi t)'), xlabel('Tiempo (s)'), ylabel
('Amplitud')
subplot (3,3,3)
plot(t,w);
grid on
1
ejercicios de MATLAB
2
ejercicios de MATLAB
Parte N°2
Ejercicio 2 Grafique cada una de las siguientes señales en 3D agregando, (nombre al eje X, nombre al eje
Y, titulo a la señal que está graficando, rejilla) a)
t1=linspace(0,2*pi,200);
a=12; b=2; c=0.5;
x1=b*[cos(t1)];
y1=b*[sin(t1)];
z1=c*[cos(a*t1)];
figure
plot3(x1,y1,z1,'g')
title('Onda sinusoidal sobre un cilindro de radio 2'),
xlabel('bcos(t)');ylabel('bsin(t)');zlabel('c cos(at)');
axis equal
% b)
al=2:pi/80:25*pi;
zb=al/8;
xb=zb/(8*pi)+zb.*cos(al);
yb=zb/(8*pi)+zb.*sin(al);
figure
plot3(xb,yb,zb)
grid on
axis auto
title('Curva Helicoidal en 3 dimensiones'),
xlabel('z/(8*pi)+zcos(\alpha)');ylabel('z/
(8*pi)+z.*cos(\alpha)');zlabel('\alpha/8');
% c)
xc=linspace(0,12,1100);
yc=cos(xc);
zc=sin(xc);
figure
plot3(xc,yc,zc,'r')
title('Curva en forma de resorte'),
xlabel('x');ylabel('cos(x)');zlabel('sin(x)');
grid on
axis auto
3
ejercicios de MATLAB
4
ejercicios de MATLAB
Parte N°3
Ejercicio #3a Genere un archivo en Excel Guárdelo en la carpeta de Matlab que se generó cuando se instaló
Excel = xlsread('Resonancia.xlsx');
K=Excel(:,1);
L=Excel(:,2);
figure
plot (K,L)
grid on
title('Curva universal de Resonancia')
xlabel('Frecuencia (Hz)')
ylabel('Impedancia Zi/Zo')
NT=table(K,L)
tb=linspace(-5,5,1000);
% Ejercicio #3b. Grafique cada una de las siguientes señales y plantee
sus ecuaciones en Matlab, ver figuras además agregue rejilla y
límites con los ejes X y Y
bb= 10;
b1=-50-10*tb;
b2=30+10*tb;
b3=-10-10*tb;
b4=-10+10*tb;
b5=30-10*tb;
b6=-50+10*tb;
gb=b1.*((tb>-5)&(tb<=-4))+b2.*((tb>-4)&(tb<=-3))+bb.*((tb>-3)&(tb<=-1))+b3.*((tb>-1
5
ejercicios de MATLAB
figure
plot(tb,gb,'r')
grid on
title('B(t)'),xlabel('B(t)'),ylabel('Amplitud');
%C(t)
cc=0;
c1=10+2*tb;
c2=-6-2*tb;
c3=2+2*tb;
c4=2-2*tb;
c5=-6+2*tb;
c6=10-2*tb;
gc=c1.*((tb>-5)&(tb<=-4))+c2.*((tb>-4)&(tb<=-3))+cc.*((tb>-3)&(tb<=-1))+c3.*((tb>-1
figure
plot(tb,gc)
grid on
title('C(t)'),xlabel('tiempo(t)'),ylabel('Amplitud');
%D(t)
td=linspace(-2,2,1000);
d1=5+2.5*td;
d2=2.5+2.5*td;
d3=2.5*td;
d4=-2.5+2.5*td;
gd=d1.*((td>-2)&(td<=-1))+d2.*((td>-1)&(td<=0))+d3.*((td>0)&(td<=1))+d4.*((td>1)&(t
figure
plot(td,gd,'y')
grid on
title('D(t)'),xlabel('tiempo(t)'),ylabel('Amplitud');
% E(t)
e1=3;
e2=-3;
e3=0;
ge=e1.*((tb>-5)&(tb<=-4))+e2.*((tb>-4)&(tb<=-3))+e3.*((tb>-3)&(tb<=-1))+e1.*((tb>-1
figure
plot(tb,ge)
grid on
title('E(t)'),xlabel('tiempo(t)'),ylabel('Amplitud');
NT =
17×2 table
K L
____ ____
-2 0.06
-1.7 0.08
-1.5 0.1
-1.2 0.15
-1 0.2
-0.7 0.3
-0.5 0.5
-0.3 0.8
6
ejercicios de MATLAB
0 1
0.3 0.8
0.5 0.5
0.7 0.3
1 0.2
1.2 0.15
1.5 0.1
1.7 0.08
2 0.06
7
ejercicios de MATLAB
8
ejercicios de MATLAB
9
ejercicios de MATLAB
10