Create a better plot
    5 views (last 30 days)
  
       Show older comments
    
    Miguel Albuquerque
 on 5 Jul 2022
  
    
    
    
    
    Commented: Miguel Albuquerque
 on 5 Jul 2022
            Heu guys, I have this plot:

This plot defines a plane with a radar moving  in x axis, from position 0 to position 400. And at position 184 to position 276, detects a target and calculates the distance to the target. Is there a better plot or gif, that simulates plane moving from 0 to 400 and achieving that range to targets?
Thanks
2 Comments
  John D'Errico
      
      
 on 5 Jul 2022
				A plot is nothing but a bunch of pixels turned on or off. What those pixels mean to you is all that matters.
So what is wrong with the plot you have? Describe why it is a problem. Does it show what happened? Can you interpret that plot correctly? As far as I can see, the existing plot tells me that something was detected at or around time/position 184, and then like a UFO, disappeared at or around time/position 276. The distance between the two seems to have been increasing, as if one of the objects was accelerating.
If yes, then why do you need to find something better? And then, what exactly would be better about a plot that did work perfectly for you, since the existing graphic seems to be not adequate?
Accepted Answer
  Mathieu NOE
      
 on 5 Jul 2022
        hello 
maybe you want to  make an animated line 
demo : 
%% create animatedline object / handle
figure
h1 = animatedline;
h1.Marker = '*';
h1.Color = [1 0.4 0];
h2 = animatedline;
h2.Marker = '+';
h2.Color = [0 1 0];
axis([0 5 -1.2 1.2]);
%% dummy data
x = linspace(0,2*pi,100);
y1 = sin(x);
y2 = cos(x); 
for ci=1:length(x)
        addpoints(h1,x(ci),y1(ci));
        addpoints(h2,x(ci),y2(ci));
        pause(0.1);
        drawnow
end
0 Comments
More Answers (0)
See Also
Categories
				Find more on Graphics Performance in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!