⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rx.asv

📁 这是一个matlab程序
💻 ASV
字号:
% rx
disp('Receiving')
rx_chunk

% perform fft to recover original data from time domain sets
recv_spaced_chunks = zeros(num_chunks,fft_size);
for i = 1:num_chunks
	recv_spaced_chunks(i,1:fft_size) = fft(recv_td_sets(i,1:fft_size));
	% Note: 'round()' gets rid of small numerical error in Matlab but a threshold will be needed for a practical system
	% 2001-4-17 -- Got rid of 'round()' to do decoding more intelligently
end
rx_dechunk
output = pol2bin(output);	% Converts polar to binary
write

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -