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 Center および File ExchangeArray Geometries and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by