????目錄
??1 概述
??2 運行結(jié)果
??3 參考文獻
?????4 Matlab代碼
??1 概述
本代碼為MIMO-OFDM無線通信技術(shù)及MATLAB實現(xiàn)。分為十章,供大家學(xué)習。
??2 運行結(jié)果
主函數(shù)部分代碼:
clear all, clf, clc%清除命令,清除圖形,清除數(shù)據(jù) fc=1.5e9;%載波頻率1.5GHz d0=100;%參考距離 sigma=3;%標準差 distance=[1:2:31].^2;%距離 Gt=[1 1 0.5];%發(fā)射天線增益 Gr=[1 0.5 0.5];%接受天線增益 Exp=[2 3 6]; for k=1:3 y_Free(k,:)= PL_free(fc,distance,Gt(k),Gr(k));%自由空間的路徑損耗 y_logdist(k,:)= PL_logdist_or_norm(fc,distance,d0,Exp(k));%對數(shù)路徑損耗模型 y_lognorm(k,:)= PL_logdist_or_norm(fc,distance,d0,Exp(1),sigma); %對數(shù)正態(tài)陰影衰落模型 end %自由路徑損耗模型 figure(1); semilogx(distance,y_Free(1,:),'k-o',distance,y_Free(2,:),'b-^',distance,y_Free(3,:),'r-s') grid on, axis([1 1000 40 110]); title(['Free PL Models, f_c=',num2str(fc/1e6),'MHz']) xlabel('Distance[m]'); ylabel('Path loss[dB]'); legend('G_t=1, G_r=1','G_t=1, G_r=0.5','G_t=0.5, G_r=0.5'); %對數(shù)路徑損耗模型 figure(2) semilogx(distance,y_logdist(1,:),'k-o',distance,y_logdist(2,:),'b-^',distance,y_logdist(3,:),'r-s') grid on, axis([1 1000 40 110]), title(['Log-distance PL model, f_c=',num2str(fc/1e6),'MHz']) xlabel('Distance[m]'); ylabel('Path loss[dB]'); legend('n=2','n=3','n=6'); %對數(shù)正態(tài)陰影路徑損耗模型 figure(3) semilogx(distance,y_lognorm(1,:),'k-o',distance,y_lognorm(2,:),'b-^',distance,y_lognorm(3,:),'r-s') grid on, axis([1 1000 40 110]), title(['Log-normal PL model, f_c=',num2str(fc/1e6),'MHz, ','\sigma=', num2str(sigma), 'dB']) xlabel('Distance[m]'); ylabel('Path loss[dB]'); legend('path 1','path 2','path 2'); ?
??3 參考文獻
[1]黃丘林. MIMO無線通信技術(shù)研究[D].西安電子科技大學(xué),2007.文章來源:http://www.zghlxwxcb.cn/news/detail-415077.html
部分理論引用網(wǎng)絡(luò)文獻,若有侵權(quán)聯(lián)系博主刪除。文章來源地址http://www.zghlxwxcb.cn/news/detail-415077.html
到了這里,關(guān)于MIMO-OFDM無線通信技術(shù)(Matlab代碼實現(xiàn))的文章就介紹完了。如果您還想了解更多內(nèi)容,請在右上角搜索TOY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!