MODULACION QAM
Enviado por anth20131 • 4 de Diciembre de 2014 • Examen • 268 Palabras (2 Páginas) • 321 Visitas
GUIA DE LABORATORIO N° 3
FACULTAD : INGENIERIA DE SISTEMAS Y ELECTRONICA
DIRECCIÓN : INGENIERIA DE TELECOMUNICACIONES
CURSO : TELECOMUNICACIONES II
DOCENTE :
TEMA: MODULACION QAM
OBJETIVOS:
FUNDAMENTO TEORICO:
MATERIALES A UTILIZAR:
DESARROLLO DE LA PRÁCTICA
2. grafica 8-QAM en Matlab
function y=fqam(x,A)
t=[-A*0.75 -A*0.25 A*0.25 A*0.75];
tt=-A*0.75:0.01:A*0.75;
xx=tt;
if (x==8)
y(1)=t(1);
y(2)=-t(1);
y(3)=t(2);
y(4)=-t(2);
y(5)=t(3);
y(6)=-t(3);
y(7)=t(4);
y(8)=-t(4);
plot(t(1),y(1),'o',t(1),y(2),'o',t(2),y(3),'o',t(2),y(4),'o',t(3),y(5),'o',t(3),y(6),'o',t(4),y(7),'o',t(4),y(8),'o','linewidth',6)
grid on
hold on
plot(tt,xx,tt,-xx)
title('CONSTELACION 8-QAM')
RESULTADOS Y CONCLUSIONES
1. La importancia de la Modulacion QAM:
- RF Broadcasting hay aplicaciones de radio, televisión, receptores de satélite
- sistemas interactivos en ambos sentidos: su mayor utilidad se lo han dado las compañías de cable usando 64QAM
- En las redes LAN Y PAN inalámbricas al igual que en los teléfonos móviles buscan dar servicios de banda ancha, consideran a QAM Y OFDM como técnicas para acomodar la mayor información posible en el menor ancho de banda
- Se utilizan para la transmision de datos a alta velocidad por canales de ancho de banda restringido
- Diseño de modems superiores a 2400bps (incluidos y usados en ADSL).
- 16- QAM Y 64 QAM también se utilizan actualmente en la televisión digital terrestre
2.
...