博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
matlab进行地图仪的绘制
阅读量:5847 次
发布时间:2019-06-18

本文共 786 字,大约阅读时间需要 2 分钟。

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 visual26 set(gcf,'Position',[100 50 600 500]) % [x_ori,y_ori,w,h], x_ori,y_ori以左下角为起点,向右为x,向上为y

 

 

转载地址:http://niwjx.baihongyu.com/

你可能感兴趣的文章
HDU 4390 Number Sequence(容斥原理+组合计数)
查看>>
BZOJ 2111 Perm 排列计数(满二叉树)
查看>>
关闭MongoDB
查看>>
EJB---->Entity 的生命周期和状态、回调函数
查看>>
[转]oracle的ANYDATA数据类型
查看>>
微软职位内部推荐-SDEII
查看>>
microsoft windows network 不允许一个用户使用一个以上用户名与服务器或共享资源的多重连接...
查看>>
上传按钮样式优化 <input type="file" />
查看>>
springframework resource
查看>>
dubbo入门
查看>>
C# DragDropEffects类与拖动实现
查看>>
查看linux服务器硬盘IO读写负载
查看>>
php 301重定向
查看>>
DSOFramer的使用(一)
查看>>
[Winodows Phone 7控件详解]Silverlight toolkit for Windows Phone 7.1控件-7
查看>>
eclipse最实用快捷键
查看>>
Android中JNI的使用方法
查看>>
SQL返回当前天是星期几
查看>>
CSS3 Transition 过渡
查看>>
Jquery 将表单序列化为Json对象
查看>>