eph2plot.m
来自「这是国外关于卫星导航方面一书的源代码」· M 代码 · 共 26 行
M
26 行
% -----------------------------------------------------------------------------
% GPSLab: EPH2PLOT.M
% -----------------------------------------------------------------------------
%
% Aufruf von EPHPLOT unter Abpr黤ung, ob bereits 24h-Orbit berechnet wurden,
% die man erst darstellen will. Als Callback im Men黳rogramm GPSLAB
% zu umfangreich, daher ausgelagert.
%
% -----------------------------------------------------------------------------
% (c) iapg (1998) zeb
if ~exist('x') | ~exist('y') | ~exist('z') | ~exist('rela') | ~exist('tsat')
warndlg(['Nothing to display, as long as no orbits were calculated: '...
'Please perform "Orbits" -> "calculate ..." at first.'] ,...
'GPS Lab: application error at call of EPHPLOT.M');
return;
end
ephplot(x,y,z,tsat,rela,eph_pl_nr,ecef_iner);
% (c) iapg (1998) zeb
% if ~exist('x') | ~exist('y') | ~exist('z') | ~exist('rela') | ~exist('tsat') ,warndlg(['Nichts darstellbar, solange keine Bahnen berechnet sind: ' 'Bitte f黨ren Sie zuerst "f黵 Ref. berechnen" oder "f黵 Rover berechnen" aus.'] ,'Anwendungsfehler beim Aufruf von EPHPLOT.M'); return; end ,ephplot(x,y,z,tsat,rela,1);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?