doc_phasetree.m
来自「利用matlab模擬phasetree的情況」· M 代码 · 共 24 行
M
24 行
M_ary_number = 2;
modulation_index = 2/3;
pulse_length = 2;
samples_per_symbol = 8;
opts = simset('SrcWorkspace','Current',...
'DstWorkspace','Current');
L = 5; % Symbols to display
pmat = [];
for ip_sig = 0:(M_ary_number^L)-1
s = de2bi(ip_sig,L,M_ary_number,'left-msb');
% Apply the mapping of the input symbol to the CPM
% symbol 0 -> -(M-1), 1 -> -(M-2), etc.
s = 2*s'+1-M_ary_number;
sim('doc_phasetree', .9, opts); % Run model to generate x.
% Next column of pmat
pmat(:,ip_sig+1) = unwrap(angle(x(:)));
end;
pmat = pmat/(pi*modulation_index);
t = (0:L*samples_per_symbol-1)'/samples_per_symbol;
plot(t,pmat); figure(gcf); % Plot phase tree.
grid on;
title('GMSK phase tree');
xlabel('t/T'); ylabel('
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?