phased array system toolbox - target velocity

 Respuesta aceptada

Honglei Chen
Honglei Chen el 18 de Jun. de 2013
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 comentarios

thankyou Mr. Honglei Chen
Sir, how to simulate the 2d esprit in phased array toolbox
Honglei Chen
Honglei Chen el 19 de Jun. de 2013
2D ESPRIT is currently not supported.
Jagadeeshvelan kumar
Jagadeeshvelan kumar el 25 de Jun. de 2013
Editada: Jagadeeshvelan kumar el 25 de Jun. de 2013
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 el 27 de Jun. de 2013
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.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by