資源簡介
基于瑞利信道的ls和mmse信道估計的matlab代碼,采用的是jakes模型

代碼片段和文件信息
function?[H_interpolated]?=?interpolate(Hpilot_locNfftmethod)
%?Input:?H?=?Channel?estimate?using?pilot?sequence
%?pilot_loc?=?Location?of?pilot?sequence
%?Nfft?=?FFT?size
%?method?=?抣inear?抯pline?
%?Output:?H_interpolated?=?interpolated?channel
if?pilot_loc(1)>1
slope?=?(H(2)-H_est(1))/(pilot_loc(2)-pilot_loc(1));
H?=?[H(1)-slope*(pilot_loc(1)-1)?H];?pilot_loc?=?[1?pilot_loc];
end
if?pilot_loc(end)? slope?=?(H(end)-H(end-1))/(pilot_loc(end)-pilot_loc(end-1));
H?=?[H?H(end)+slope*(Nfft-pilot_loc(end))];
pilot_loc?=?[pilot_loc?Nfft];
end
if?lower(method(1))==‘l‘
????H_interpolated=interp1(pilot_locH(1:Nfft));
else?H_interpolated?=?interp1(pilot_locH(1:Nfft)‘spline‘);
end
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-04-17?00:56??Channel-Estimation-OFDM--master\
?????文件?????????642??2016-04-17?00:56??Channel-Estimation-OFDM--master\LS_CE.m
?????文件????????1007??2016-04-17?00:56??Channel-Estimation-OFDM--master\MMSE_CE.m
?????文件?????????469??2016-04-17?00:56??Channel-Estimation-OFDM--master\README.md
?????文件?????????712??2016-04-17?00:56??Channel-Estimation-OFDM--master\interpolate.m
?????文件????????6192??2016-04-17?00:56??Channel-Estimation-OFDM--master\main.m
評論
共有 條評論