How can I speed up "plotm" when plotting large amounts of map data in a loop?
Show older comments
I have a large amount of map data that I am plotting in a loop using "plotm". This loop becomes slower over time and takes a while to complete.
% numPoints = 200,000
axesm mercator
for i = 1:numPoints
plotm(lat(i), lon(i));
end
Is there some way to speed up this plotting?
Accepted Answer
More Answers (0)
Categories
Find more on Vector and Raster Map Display 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!