资源简介
matlab-mapping toolbox-提取自r2019b,解压后放到matlab目录下的toolbox中,并在预设目录中添加他和子目录,最后在预设-常规中点击更新工具箱路径缓存即可
代码片段和文件信息
function mat = almanac(objectparmunitsrefbody)
%ALMANAC Parameters for Earth planets Sun and Moon
%
% ALMANAC is not recommended. Use earthRadius referenceEllipsoid
% referenceSphere or wgs84Ellipsoid instead.
%
% ALMANAC without any input arguments displays a list of the heavenly
% objects recognized by ALMANAC.
%
% ALMANAC(‘object‘) displays recognized parameters units and reference
% body strings for the planet.
%
% ALMANAC(‘object‘‘parameter‘) returns the specified parameter from the
% almanac. Available parameters are the spherical radius of the planet
% surface area and volume of the sphere the definition of the ellipsoid
% (semimajor axis and eccentricity) the volume and surface area of the
% ellipsoid and tabulated surface area and volume.
%
% ALMANAC(‘object‘‘parameter‘‘units‘) returns the corresponding
% parameter in the units defined by ‘units‘. If omitted kilometers are
% used.
%
% ALMANAC(‘object‘‘parameter‘‘units‘‘referencebody‘) returns the
% corresponding parameter given the spherical and or elliptical reference
% body specified by ‘referencebody‘. If omitted a sphere is assumed
% where appropriate.
%
% See also earthRadius referenceEllipsoid referenceSphere wgs84Ellipsoid.
% Copyright 1996-2017 The MathWorks Inc.
% Written by: E. Byrns E. Brown W. Stumpf
narginchk(04)
if nargin > 0
object = convertStringsToChars(object);
end
if nargin > 1
parm = convertStringsToChars(parm);
end
if nargin > 2
units = convertStringsToChars(units);
end
if nargin > 3
refbody = convertStringsToChars(refbody);
end
validobjects = {...
‘sun‘...
‘mercury‘...
‘venus‘...
‘earth‘...
‘moon‘...
‘mars‘...
‘jupiter‘...
‘saturn‘...
‘uranus‘...
‘neptune‘...
‘pluto‘};
if nargin == 0
S=[{‘The heavenly objects recognized by ALMANAC are:‘; ‘ ‘}; ...
cellstr([repmat(‘ ‘[length(validobjects) 1]) char(validobjects)])];
fprintf(‘%s\n‘S{:});
else
object = validatestring(object validobjects mfilename ‘object‘ 1);
switch nargin
case 1 feval(object);
case 2 mat = feval(objectparm);
case 3 mat = feval(objectparmunits);
case 4 mat = feval(objectparmunitsrefbody);
end
end
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
function mat = earth(parmunitsrefbody)
%EARTH Calculations for the planet Earth.
%
% EARTH without any input arguments displays recognized
% parameters units and reference body strings.
%
% EARTH(‘parameter‘) returns the specified parameter.
% Available parameters are the spherical radius of the planet surface
% area and volume of the sphere the definition of the ellipsoid
% (semimajor axis and eccentricity) the volume and surface area of the
% ellipsoid and actual surface area and volume.
%
% EARTH(‘parameter‘‘units‘) returns the corresponding parameter in
% the units defined by ‘units‘. If omitted kilometers are u
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 225 2004-02-02 05:55 map\icons\extent_icon.png
文件 813 2013-09-06 03:16 map\icons\image_app_16.png
文件 1472 2013-09-06 03:16 map\icons\image_app_24.png
文件 279 2004-02-02 05:55 map\icons\info.png
文件 882 2010-03-27 06:59 map\icons\mapshow_Symbolspec.png
文件 183 2004-02-02 05:55 map\icons\tool_arrow.png
文件 822 2003-08-02 02:11 map\icons\tool_arrow_cursor.bmp
文件 214 2004-02-02 05:55 map\icons\tool_datatip.png
文件 1334 2003-08-02 02:11 map\icons\tool_datatip_cursor.bmp
文件 161 2004-02-02 05:55 map\icons\tool_grid.png
文件 173 2004-02-02 05:55 map\icons\tool_hand.png
文件 217 2004-02-02 05:55 map\icons\tool_la
文件 176 2004-02-02 05:55 map\icons\tool_line.png
文件 146 2004-02-02 05:55 map\icons\tool_marquee.png
文件 167 2004-02-02 05:55 map\icons\tool_ruler.png
文件 163 2004-02-02 05:55 map\icons\tool_select.png
文件 138 2004-02-02 05:55 map\icons\tool_text.png
文件 205 2004-02-02 05:55 map\icons\view_fit_to_window.png
文件 187 2004-02-02 05:55 map\icons\view_prev.png
文件 189 2004-02-02 05:55 map\icons\view_zoom_in.png
文件 1334 2003-08-02 02:12 map\icons\view_zoom_in_cursor.bmp
文件 186 2004-02-02 05:55 map\icons\view_zoom_out.png
文件 1334 2003-08-02 02:12 map\icons\view_zoom_out_cursor.bmp
文件 1470 2013-03-13 20:36 map\map\+internal\+map\ccwRingsAreUnenclosed.m
文件 1463 2013-03-13 20:36 map\map\+internal\+map\checkcmap.m
文件 7285 2019-05-02 00:58 map\map\+internal\+map\checkfilename.m
文件 700 2018-10-31 21:04 map\map\+internal\+map\checkNameValuePairs.m
文件 4073 2013-04-26 04:49 map\map\+internal\+map\convertToGeoRasterRef.m
文件 493 2013-03-13 20:36 map\map\+internal\+map\findFirstLastNonNan.m
文件 1924 2013-03-13 20:36 map\map\+internal\+map\getCoordRefSysCodeType.m
............此处省略1227个文件信息
- 上一篇:基于matlab车流量统计
- 下一篇:基于MATLAB故障诊断技术光盘及工具箱
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论