资源简介

此代码为线性调频信号时域频域仿真,及与驻定相位法结果的比较。
对应文章讲解了驻定相位原理,并以线性调频信号为例,求解了LFM信号的频域近似解。

资源截图

代码片段和文件信息

%% LFM信号时域频域的仿真
close all;clear;clc
% 参数设置
B = 50e6;
tao = 10e-6;
t = linspace(-tao/2tao/21000);
k = B/tao; 
% 时域
x = exp(j*pi*k*t.^2);
figure
subplot(211)
plot(real(x)‘LineWidth‘1.5)
title(‘LFM时域信号(实部)‘)
subplot(212)
plot(imag(x)‘LineWidth‘1.5)
title(‘LFM时域信号(虚部)‘)
% 频域
% (1)FFT结果
xf = fftshift(fft(x));
figure
subplot(211)
plot(abs(xf)‘LineWidth‘1.5

评论

共有 条评论