Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.20 KB | None | 0 0
  1. function plot_moving_objects(map2,mov_obs,path,v)
  2. draw_obstacles(map2, mov_obs);
  3. for i=1:size(path,2)
  4.     h = viscircles([path(2,i), path(1,i)], 4);    
  5.     pause(0.1);
  6.     delete(h);
  7. end
  8.  
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement