generate_relay_structure.m

来自「放大转发协同通信的有关仿真代码」· M 代码 · 共 12 行

M
12
字号
function [relay_structure] = generate_relay_structure();
% Creates the structure for all relay parameters
rx_structure = generate_rx_structure;
relay_structure = struct(...
'mode',{},... % 'AAF' (Amplify and Forward)
... 'DAF' (Decode and Forward)
...'RCPC' (Rate-Compatible Punctured Convolutional codes)
'magic_genie',{},... % 'Magic Genie
'amplification',{},... % used in AAF mode
'symbol_sequence',{},... % used in DAF mode
'signal2send',{},... % Signal to be send
'rx',struct(rx_structure)); % Receiver

⌨️ 快捷键说明

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