Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在一般地图(亚洲或美国)上绘制计数器地图。
一般而言(输入数据仅作为示例)
% Data Input long = (:,1); lat = (:,2); z = (:,3); [x,y] = meshgrid(x,y); z = x.^2 + y.^2; [C, h] = contour(x, y, z, 10); clabel(C,h)
所以这就是我卡住的地方。我使用世界地图“亚洲”,但我只看到地图而不是亚洲的等高线图。
尝试hold on在第一个图之后和第二个图之前添加命令,然后hold off在第二个图之后添加命令。
hold on
hold off
此命令告诉 MATLAB 在绘制新图之前不要清除该图,其效果是您可以将多个图叠加在一起。