MATLAB雷达工具箱核心函数速查

雷达信号生成

函数名功能说明示例
phased.LinearFMWaveform创建线性调频脉冲波形waveform = phased.LinearFMWaveform('SampleRate',10e6,'PulseWidth',100e-6,'PRF',1e3,'SweepBandwidth',5e6)
phased.RectangularWaveform创建矩形脉冲波形waveform = phased.RectangularWaveform('SampleRate',10e6,'PulseWidth',50e-6,'PRF',2e3)

信号处理

函数名功能说明示例
spectrogram()计算短时傅里叶变换spectrogram(x,hamming(256),200,512,fs,'yaxis')
xcorr()计算互相关/自相关[c,lags] = xcorr(signal,ref)
pwelch()功率谱密度估计[pxx,f] = pwelch(x,[],[],[],fs)