www.gusucode.com > ofdm结合2x2的m.. > ofdm结合2x2的m...构的WLAN环境数据传输仿真程序matlab版,包括信道估计和同步等模块/create_freq_offset.m

    

function offset_sig = create_freq_offset(input_signal, freq_offset);

global sim_consts;

n_signals = size(input_signal,1);

% create a timebase
time_base = (0:(length(input_signal)-1))/sim_consts.SampFreq;

% create phase_rotation vector
phase_rotation = repmat(exp(j*2*pi*freq_offset*time_base), n_signals, 1);

% and apply it to the signal;
offset_sig = input_signal.*phase_rotation;