Triangular wave form Up and Down sweep problem??
古いコメントを表示
I am trying to dechirp a triangular up and down sweep of transmitted and recievedsignal with no doppler, ideally i should get only one beat frequency same for Up sweep and Down sweep, but i am getting two beat frequencies, i dont know why, i think its problem with the dechirp command, I am attaching my code also, help me find the problem,
clear,close all, clc
fc=77e9;
fs= 150000000 ;
tm = 0.002;
bw = 150000000 ;
c=3e8;
slope = bw/tm;
lambda = c/fc;
hwav = phased.FMCWWaveform('SweepTime',tm,'SweepBandwidth',bw,...
'SampleRate',fs,'SweepDirection','Triangle' , 'NumSweeps',2)
xt = step(hwav);
sampletime=1/hwav.SampleRate;
tau = 8e4;
delay = tau*sampletime;
supposed_range = delay*c/2
xr = [zeros(tau,1); xt(1:end-tau)];
y = dechirp(xr,xt);
hspec = dsp.SpectrumAnalyzer('SampleRate',hwav.SampleRate,'TwoSidedSpectrum',true ,...
'Title','Spectrum for received and dechirped signal',...
'LegendSource','Auto');
step(hspec,[y])
figure
spectrogram(xt,32,16,32,fs,'yaxis')
hold on
spectrogram(xr,32,16,32,fs,'yaxis')
hold on
spectrogram(y,32,16,32,fs,'yaxis')
fb_rng = rootmusic(pulsint(y,'coherent'),1,hwav.SampleRate)
range = beat2range(fb_rng,slope)
採用された回答
その他の回答 (1 件)
REEM ALI
2014 年 1 月 31 日
0 投票
please can you help me to find beat frequency from sweep of triangular
カテゴリ
ヘルプ センター および File Exchange で Transmitters and Receivers についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!