资源简介
基于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
相关资源
- Design Compiler student guide-学习手册
- simvision user guide8.2
- LDPC仿真程序
- TMS320F28x DSP CPU and Instruction Set Referen
- ugui滑动翻页
- Unity3D UGUI源代码源码分享
- Artificial Intelligence - A Guide to Intellige
- uvm user guide
- 基于uCOSII的小型GUI的应用程序实验
- 基于IDL的图形界面设计源代码
- lenaboatbabooncamerahouse标准灰度图像库
- UnityGUI强大10多个统计DIY自定义组件分
- libsvm_V3.1_[FarutoUltimate3.1Mcode]
- WAVEGUIDE HANDBOOK
- PMBOK Guide Sixth Ed
- ECCV10-Guided Image Filter-代码
- ECCV10-Guided Image Filter -ppt
- intel 9560ac 网卡 黑苹果驱动 带gui界面
- 微波晶体管放大器分析与设计-[美]G
- PrimeTime user guide
- PCA 人脸识别算法
- nctuns的GUI手册
- MiniGUI库文件之带TTF- libminigui-1.6.10-t
- COMSOL Multiphysics 5.4 最新声学模块用户
- DDR and DDR2 SDRAM High-Performance Controller
- UIS891xDM_Programming_Guide-1.1.pdf
- UGUI 滑动翻页Demo
- Guide to Elliptic Curve Cryptography
- A Practical Guide to TPM 2.0
- TraMineR-Users-Guide(R语言文本挖掘包T
评论
共有 条评论