Linear Frequency Modulated Waveform

why LFM waveform has varying amplitude when i take step of phased.LinearFMWaveform

댓글 수: 3

Wayne King
Wayne King 2013년 7월 20일
Can you please show how you set the properties for your System object.
Jagadeeshvelan kumar
Jagadeeshvelan kumar 2013년 7월 22일
편집: Honglei Chen 2013년 7월 22일
clc;
clear all;
pd=0.9;
pfa=1e-6;
max_range=1000;
range_res=0.5 ;
fc=35e9;
prop_speed = physconst('LightSpeed');
pulse_bw = prop_speed/(2*range_res);
pulse_width=1/pulse_bw;
fs = 2*pulse_bw;
noise_bw =2*pulse_bw;
c=3e8;
lambda=c/fc;
time_bandwidth_product=100;
prf= prop_speed/(2*max_range);
hw=phased.LinearFMWaveform('SampleRate',fs,'PulseWidth',time_bandwidth_product/pulse_bw,'PRF',prf,'SweepBandwidth',pulse_bw,'NumPulses',1);
x=step(hw);
plot(hw);
Honglei Chen
Honglei Chen 2013년 7월 22일
added code format to the comment above.

댓글을 달려면 로그인하십시오.

답변 (1개)

Honglei Chen
Honglei Chen 2013년 7월 22일
편집: Honglei Chen 2013년 7월 22일

0 개 추천

The plot() function on LinearFMWaveform, plots only the real part of the waveform, so the amplitude is indeed varying.
If you are asking why in each period, the maximum amplitude seems to be varying, that is because in discrete time, you may not always be able to sample right at the peak in each period. However, if you plot
plot(abs(x))
You can see that the magnitude is constant.
HTH

카테고리

질문:

2013년 7월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by