phased array system toolbox - target velocity

조회 수: 2 (최근 30일)
Jagadeeshvelan kumar
Jagadeeshvelan kumar 2013년 6월 18일
How to simulate a non constant velocity moving target in the toolbox examples

채택된 답변

Honglei Chen
Honglei Chen 2013년 6월 18일
You can update the velocity at each simulation iteration to mimic different trajectories. Below is an example for circular trajectories:
T = 1;
myPlatform = phased.Platform('Velocity',[1;0;0]);
N = 360;
pos = zeros(3,N);
vel = zeros(3,N);
for m = 1:N
[pos(:,m),vel(:,m)] = step(myPlatform,T);
v = [cos(m*pi/180);sin(m*pi/180);0];
myPlatform.Velocity = v;
end
plot(pos(1,:),pos(2,:))
HTH
  댓글 수: 5
Jagadeeshvelan kumar
Jagadeeshvelan kumar 2013년 6월 25일
편집: Jagadeeshvelan kumar 2013년 6월 25일
Sir, how to see the target's path in the spectrogram,i.e how to see the doppler changes of a target in the spectrogram
Honglei Chen
Honglei Chen 2013년 6월 27일
You should be able to just call spectrogram on the received signal. If you are using pulsed radar, then you may need to use slow time data.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Array Geometries and Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by