ich hab eine kleine OFDM Simulation für Matlab gefunden.
Folgende Codezeilen verstehe ich dabei nicht.
Warum wird in der ifft Berechnung noch was angehängt?
Code:
% 4. Do IFFT on each block % Make the serial stream a matrix where each column represents a % pre-OFDM % block (w/o cyclic prefixing) % First: Find out the number of colums that will exist after reshaping
num_cols=length(qpsk_modulated_data)/block_size;
padded_data_matrix = reshape(qpsk_modulated_data, block_size, num_cols);
% Second: Create empty matix to put the IFFT'd data
cp_start = block_size-cp_len;
cp_end = block_size;
% Third: Operate columnwise & do CP for i=1:num_cols,
ifft_data_matrix(:,i) = ifft((padded_data_matrix(:,i)),no_of_ifft_points);
% Compute and append Cyclic Prefix for j=1:cp_len,
actual_cp(j,i) = ifft_data_matrix(j+cp_start,i);
end % Append the CP to the existing block to create the actual OFDM block
ifft_data(:,i) = vertcat(actual_cp(:,i),ifft_data_matrix(:,i));
end
% 5. Convert to serial stream for transmission [rows_ifft_data cols_ifft_data]=size(ifft_data);
len_ofdm_data = rows_ifft_data*cols_ifft_data;
also ich blicke noch nicht ganz durch, aber meinst du diesen Cyclic Prefix der noch vorne dran gestellt wird. Weil sonst wird ja nichts an der ifft drangehängt.
Viele Grüße,
der Oli
Einstellungen und Berechtigungen
Du kannst Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen. Du kannst Dateien in diesem Forum posten Du kannst Dateien in diesem Forum herunterladen
MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.