matlab进行地图仪的绘制
1 % 绘制地球仪,并标出我们的位置 2 cla reset; 3 load topo; 4 5 [x,y,z] = sphere(45);%45是画出来的球面的经纬分面数 6 s = surface(x,y,z,'FaceColor','texturemap','CData',topo); 7 colormap(topomap1); 8 9 % Brighten the colormap for better annotation visibility: 10 brighten(.6) 11 12 % Create and arrange the camera and lighting for better visibility: 13 campos([1.3239 -14.4250 8.4954]); 14 camlight; 15 lighting gouraud; 16 17 axis off vis3d; %axis off关闭所有的坐标轴标签、刻度、背景 18 19 % Set the x- and y-coordinates of the textarrow object: 20 x = [0.7698 0.5851]; 21 y = [0.3593 0.5492]; 22 % Create the textarrow object: 23 txtar = annotation('textarrow',x,y,'String','We are here.','FontSize',14,'Color',[.9,0,0]); 24 25 % control of visual 26 set(gcf,'Position',[100 50 600 500]) % [x_ori,y_ori,w,h], x_ori,y_ori以左下角为起点,向右为x,向上为y
你们的评论、反馈,及对你们有所用,是我整理材料和博文写作的最大的鼓励和唯一动力。欢迎讨论和关注!
没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。
没有整理与归纳的知识,一文不值!高度概括与梳理的知识,才是自己真正的知识与技能。 永远不要让自己的自由、好奇、充满创造力的想法被现实的框架所束缚,让创造力自由成长吧! 多花时间,关心他(她)人,正如别人所关心你的。理想的腾飞与实现,没有别人的支持与帮助,是万万不能的。