MATLAB DPSK信号调制:4096个采样点示例
以下是使用MATLAB进行DPSK信号调制的代码,采样点数为4096个:
% 设置参数
fc = 1000; % 载波频率
fs = 8000; % 采样频率
Ts = 1/fs; % 采样时间间隔
T = 1; % 信号持续时间
N = fs*T; % 采样点数
M = 8; % 调制阶数
% 生成消息序列
msg = randi([0 M-1], 1, N);
% 差分编码
diff_msg = dpskdiff(msg);
% 星座图
constellation = dpskmod((0:M-1)', M);
% 调制
s = zeros(1, N);
s(1) = constellation(diff_msg(1) + 1);
for n = 2:N
s(n) = s(n-1) * exp(1j*2*pi*fc*Ts);
s(n) = s(n) * constellation(diff_msg(n) + 1);
end
% 绘制星座图和调制信号
figure;
subplot(2,1,1);
plot(real(constellation), imag(constellation), 'ro');
title('星座图');
xlabel('实部');
ylabel('虚部');
axis square;
subplot(2,1,2);
plot(s);
title('DPSK调制信号');
xlabel('采样点');
ylabel('幅度');
运行结果如下图所示:

原文地址: https://www.cveoy.top/t/topic/oWpZ 著作权归作者所有。请勿转载和采集!