<< Chapter < Page | Chapter >> Page > |
%% Bits to Words
function words = b2w(bits, bits_per_symbol)%%
num_subcarriers = size(bits,2)/bits_per_symbol;words = zeros(num_subcarriers, bits_per_symbol);
for n=1:num_subcarrierswords(n,1:bits_per_symbol) = bits((n-1)*bits_per_symbol+1:(n-1)*(bits_per_symbol)+bits_per_symbol);
endend
Notification Switch
Would you like to follow the 'Fully configurable ofdm sdr transceiver in labview' conversation and receive update notifications?