有兴趣设计和模拟用于生命体征传感的 FMCW 雷达。初始信号参数为(1):
使用以下 Matlab 代码生成波形时:
fc = 77e9;
c = 3e8;
tm = 50e-6;
bw = 4e9;
fs = 4e9;
waveform = phased.FMCWWaveform('SweepTime',tm,'SweepBandwidth',bw,...
'SampleRate',fs);
sig = waveform();
subplot(211); plot(0:1/fs:tm-1/fs,real(sig));
xlabel('Time (s)'); ylabel('Amplitude (v)');
title('FMCW signal'); axis tight;
subplot(212); spectrogram(sig,32,16,32,fs,'yaxis');
title('FMCW signal spectrogram');
当 fs 增加到 4GHz 时,结果与预期一致。
(1) https://www.diva-portal.org/smash/get/diva2:1326071/FULLTEXT02.pdf