Help dog chasing a man in matlab

  • Context: MATLAB 
  • Thread starter Thread starter center15
  • Start date Start date
  • Tags Tags
    Matlab
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 4K views
center15
Messages
2
Reaction score
0
I need help? can anybody help me? I have to use Matlab. I am giving details of problem.

-a man starts in some initial location (xm,ym) and moves with a constant speed along the straight line of the predefined angle.
-a dog starts in another initial location (xd,yd) and moves towards a man with a constant speed in such a way that in each step it moves directly along the line connecting the current positions of a dog and a man
-the algorithm should terminate after the man’s move, if the distance between the man and the dog allows the dog to catch the man in its next step
-extra marks will be given if your implementation allows setting not only the initial velocity, but also the accelerations of both man and a dog.
-the algorithm must output the number of steps in which the dog catches the man.


http://pics-68.hi5.com/userpics/468/...799468.img.jpg
 
Last edited by a moderator:
Physics news on Phys.org
Try to indicate what you need help with.

You will use a for loop to go through time steps, and each step you will update the position of the dog and the man according to their velocities.
 
I know that but how can I write kods in matlab?