Create a better plot
1 view (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
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 Surface and Mesh Plots 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!