<< Chapter < Page | Chapter >> Page > |
%% Words to Symbols
function symbols = w2sym(words, word_to_symbol_map, bits_per_symbol)%%
num_subcarriers = size(words,1);symbols = zeros(1,num_subcarriers);
for n=1:num_subcarrierssymbols(1,n) = word_to_symbol_map(binvec2dec(fliplr(words(n, 1:bits_per_symbol)))+1);
endend
Notification Switch
Would you like to follow the 'Fully configurable ofdm sdr transceiver in labview' conversation and receive update notifications?