How can I speed up "plotm" when plotting large amounts of map data in a loop?
古いコメントを表示
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?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Geographic Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!