📄 generate_signal_structure.m
字号:
function [signal_structure] = generate_signal_structure();
% Creates the structure for all signal parameters
signal_structure = struct(...
'nr_of_bits',{},... % nr of bits to transfer
'nr_of_symbols',{},... % nr of symbols to transfer
'bits_per_symbol',{},... % BPSK (1 bit/symbol)
... % QPSK (2 bits/symbol)
'modulation_type',{},... % 'BPSK', 'QPSK'
'bit_sequence',{},... % bit sequence of the signal
'symbol_sequence',{},... % symbol sequence of the signal
'received_bit_sequence',{});% bit sequence after transmission
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -