资源简介
基于GUI的数字和模拟的文本与音频传输,采用OFDM QAM调制与解调,

代码片段和文件信息
disp(‘ ‘) disp(‘------------------------------------------------------------‘)
disp(‘Preparing Analysis‘)
figure(2) clf
if (input_type == 1) & (test_input_type == 1)
subplot(221) stem(data_in) title(‘OFDM 二进制输入数据‘);
subplot(223) stem(output) title(‘OFDM 二进制恢复数据‘)
else
subplot(221) plot(data_samples) title(‘OFDM 输入信号‘);
subplot(223) plot(output_samples) title(‘OFDM 恢复信号‘);
end
subplot(222) plot(xmit) title(‘OFDM发射‘);
subplot(224) plot(recv) title(‘OFDM接收‘);
dig_x_axis = (1:length(xmit))/length(xmit);
figure(3) clf
if channel_on ==1
num = [1 zeros(1 d1-1) a1 zeros(1 d2-d1-1) a2];
den = [1];
[H W] = freqz(num den 512);
mag = 20*log10(abs(H));
phase = angle(H) * 180/pi;
subplot(313)
freq_data = abs(fft(recv));
L = length(freq_data)/2;
plot(dig_x_axis(1:L) freq_data(1:L))
xlabel(‘OFDM接收端FFT‘)
axis_temp = axis;
subplot(311)
freq_data = abs(fft(xmit));
plot(dig_x_axis(1:L) freq_data(1:L)) axis(axis_temp)
title(‘OFDM发射端FFT‘)
subplot(312)
plot(W/(2*pi)mag)
ylabel(‘信道幅度响应‘)
else
subplot(212)
freq_data = abs(fft(recv));
L = length(freq_data)/2;
plot(dig_x_axis(1:L) freq_data(1:L))
xlabel(‘OFDM接收端FFT‘)
axis_temp = axis;
subplot(211)
freq_data = abs(fft(xmit));
plot(dig_x_axis(1:L) freq_data(1:L)) axis(axis_temp)
title(‘OFDM发射端FFT‘)
end
if do_QAM == 1
figure(4) clf
if (input_type == 1) & (test_input_type == 1)
subplot(221) stem(data_in) title(‘QAM Binary Input Data‘);
subplot(223) stem(QAM_data_out) title(‘QAM Recovered Binary Data‘)
else
subplot(221) plot(data_samples) title(‘QAM 输入信号‘);
subplot(223) plot(QAM_output_samples) title(‘QAM 恢复信号‘);
end
subplot(222) plot(QAM_tx_data) title(‘发射端 QAM‘);
subplot(224) plot(QAM_rx_data) title(‘接收端 QAM‘);
dig_x_axis = (1:length(QAM_tx_data))/length(QAM_tx_data);
figure(5) clf
if channel_on ==1
subplot(313)
freq_data = abs(fft(QAM_rx_data));
L = length(freq_data)/2;
plot(dig_x_axis(1:L) freq_data(1:L))
xlabel(‘QAM接收端FFT‘)
axis_temp = axis;
subplot(311)
freq_data = abs(fft(QAM_tx_data));
plot(dig_x_axis(1:L)freq_data(1:L)) axis(axis_temp)
title(‘QAM发射端FFT‘)
subplot(312)
plot(W/(2*pi)mag)
ylabel(‘信道幅度响应‘)
else
subplot(212)
freq_data = abs(fft(QAM_rx_data));
L = length(freq_data)/2;
plot(dig_x_axis(1:L) freq_data(1:L))
title(‘QAM接收端FFT‘)
axis_temp = axis;
subplot(211)
freq_data = abs(fft(QAM_tx_data));
plot(dig_x_axis(1:L)freq_data(1:L)) axis(axis_temp)
title(‘QAM发射端FFT‘)
end
% 绘制QAM接收信号星座的图
figure(6) clf plot(xxxyyy‘ro‘) grid on axis([-2.5 2.5 -2.5 2.5]) hold on
% 覆盖的星座边界
x1 = [-2 -2]; x2 = [-1 -1]; x3 = [0 0]; x4 = [1 1]; x5 = [2 2]; x6 = [-2 2];
y1 = [-2 -2]; y2 = [-1 -1]; y3 = [0 0]; y4 = [1 1]; y5 = [2 2]; y6 = [-2 2];
plot(x1y6) plot(x2y6) plot(x3y6) plot(x4y6) plot(x5y6)
plot(x6y1) plo
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 760079 2017-06-05 12:40 基于GUI的模拟通信与数字通信系统设计_崔晓康\报告\基于GUI的模拟通信与数字通信系统设计_崔晓康.docx
文件 934204 2017-06-05 12:42 基于GUI的模拟通信与数字通信系统设计_崔晓康\报告\基于GUI的模拟通信与数字通信系统设计_崔晓康.pdf
文件 40960 2017-05-29 16:53 基于GUI的模拟通信与数字通信系统设计_崔晓康\报告\期末考核要求.doc
文件 522 2017-06-05 12:53 基于GUI的模拟通信与数字通信系统设计_崔晓康\操作手册.txt
文件 4404 2017-05-29 16:16 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\analysis.m
文件 1896 2017-05-29 16:10 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\a_filter_design.asv
文件 1896 2017-05-29 16:11 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\a_filter_design.m
文件 4168 2001-04-23 14:30 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\basicgui_win.m
文件 146 2017-05-29 15:45 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\bin2eight.asv
文件 133 2017-05-29 15:45 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\bin2eight.m
文件 143 2017-05-29 15:44 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\bin2pol.m
文件 347 2017-06-01 14:33 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\ch.m
文件 149 2017-05-29 16:15 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\ch_clipping.asv
文件 149 2017-05-29 16:18 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\ch_clipping.m
文件 196 2017-05-29 15:08 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\ch_multipath.m
文件 141 2017-06-04 07:30 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\ch_noise.m
文件 2001 2017-05-24 19:44 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\CXK.fig
文件 3445 2017-05-24 19:45 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\CXK.m
文件 126 2017-05-29 16:15 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\eight2bin.asv
文件 126 2017-05-29 16:18 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\eight2bin.m
文件 1745 2017-06-02 16:39 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\firFilterr.m
文件 184 2017-06-04 07:32 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\k.mat
文件 14620 2017-05-24 19:45 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\moni.fig
文件 23431 2017-06-02 16:37 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\moni.m
文件 378 2017-05-29 22:02 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\OFDM.m
文件 74566 2017-06-02 18:25 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\OFDM_out.wav
文件 36 2017-06-04 07:32 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\OFDM_text_out.txt
文件 116 2017-05-29 16:15 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\pol2bin.asv
文件 116 2017-05-29 16:18 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\pol2bin.m
文件 4470 2017-06-02 18:15 基于GUI的模拟通信与数字通信系统设计_崔晓康\程序代码-崔晓康\QAM.m
............此处省略42个文件信息
- 上一篇:简单图书的增删改查
- 下一篇:PL2303驱动 for WIN10
相关资源
- 嵌入式图形界面MiniGUI的示例程序9例
- 编程实现二维DCT变换
- STM32基于rt_thread操作系统的SDHC卡文件
- 图像二值化
- 用FFT对信号进行频谱分析
- GUI银行管理系统
- STM32F103RBT6驱动UC1698控制芯片的160160黑
- Tone-Reservation
- QGA 量子遗传算法
- 差分形式的阻滞增长模型
- 遗传算法的M文件
- System Design Interview - An Insider’s Guide
- VCS lab 和 VCS lab guide
- 简单二阶互联系统的非线性动力学分
- easygui手册
- 英文原版-Certified Ethical Hacker CEH Foun
- Guide to Reliable Distributed Systems
- Channel waveguides fabrication in bulk Lithium
- ARM嵌入式系统开发:软件设计与优化
- IT6802 Programming Guide
- CWAP Certified Wireless Analysis Professional
- Academic Writing--a practical guide for studen
- Unigui 1.50.0.1481(含keygen)
- 手写数字识别-模板匹配法
- Stock_Watson_动态因子分析模型
- 果蝇优化算法优化支持向量回归程序
- 自己做的一个简单GUI扑克纸牌识别-
- multi output SVR
- AR过程的线性建模过程与各种功率谱估
- PCNN TOOLBOX
评论
共有 条评论