How can I speed up "plotm" when plotting large amounts of map data in a loop?
Mostrar comentarios más antiguos
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?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Geographic Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!