Borrar filtros
Borrar filtros

Tracking a moving target trajectory

6 visualizaciones (últimos 30 días)
Ameer Hamza
Ameer Hamza el 8 de Mayo de 2018
Comentada: Akshay A el 9 de Mzo. de 2020
Hello, I have problem in matlab. I am trying to simulate code of tracking a moving target trajectory (3D). The target will move first than the others point will follow same target. I need to know how to write this code. Thank you.

Respuestas (2)

KSSV
KSSV el 8 de Mayo de 2018
a = 0.1 ;
b = 0.2 ;
N = 10 ;
x = (b-a).*rand(N,1) + a;
y = (b-a).*rand(N,1) + a;
mx = mean(x) ; my = mean(y) ; % main point/ target
plot(x,y,'.r') ;
hold on
plot(mx,my,'*b') ;
% path
tx = linspace(0,2*pi,100) ;
ty = sin(tx) ;
for i = 1:100
xi = x+tx(i) ; yi = y+ty(i) ;
mxi = mx+tx(i) ; myi = my+ty(i) ;
plot(xi,yi,'.r') ;
hold on
plot(mxi,myi,'*b') ;
plot(tx,ty,'b') ;
axis([min(tx) max(tx) min(ty) max(ty)])
drawnow
pause(0.1)
hold off
end

Image Analyst
Image Analyst el 8 de Mayo de 2018
See attached demo code I wrote for a projectile. It computes just about everything you could possibly want to know about the projectile. Change input parameters to what yours are.
  2 comentarios
Robert Jack
Robert Jack el 20 de Nov. de 2019
Very nice program!
Was helpful when building a useful base to the code i added for a more sophisticated model.
Cheers!
Akshay A
Akshay A el 9 de Mzo. de 2020
can you provide that code?

Iniciar sesión para comentar.

Categorías

Más información sobre Animation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by