How can I speed up "plotm" when plotting large amounts of map data in a loop?
Afficher commentaires plus anciens
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?
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Vector and Raster Map Display dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!