FFT of Linear FM Pulse Waveform

9 visualizzazioni (ultimi 30 giorni)
Jeffrey
Jeffrey il 17 Giu 2020
Risposto: Hrishikesh Borate il 18 Giu 2020
After I generate a waveform using phased.LinearFMWaveform from the Phased Array System Toolbox, how do I take the FFT of this waveform?
prf = [1e3];
waveform = phased.LinearFMWaveform('PRF',prf,'SweepBandwidth',200e3,'PulseWidth',100e-6,'NumPulses',5);
sig = waveform();
T = length(sig)*(1/waveform.SampleRate);
t = unigrid(0,1/waveform.SampleRate,T,'[)');
plot(t,real(sig))
xlabel('millisec')
When I try to take fft(waveform), MATLAB shows the error:
Error using fft
Invalid data type. First argument must be double, single, int8, uint8, int16, uint16, int32, uint32, or
logical.

Risposte (1)

Hrishikesh Borate
Hrishikesh Borate il 18 Giu 2020
Hi,
It’s my understanding that you are trying to generate FFT of waveform, which you have generated using phase.LinearFMWaveform from Phased Array System Toolbox. The fft function doesn’t support waveform object as it’s argument. So, the solution would be to pass sig as argument instead of waveform. Use fft(sig) in your code.
For more information, refer to FFT Documentation

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by