msg_r2m.m

来自「这是国外关于卫星导航方面一书的源代码」· M 代码 · 共 43 行

M
43
字号
% -----------------------------------------------------------------------------
%  GPSLab - MSG_R2M.M   Info-Message zu RIN2MAT.M
% -----------------------------------------------------------------------------
%
%
% (c) iapg 1998-2002 zeb
% -----------------------------------------------------------------------------


    ButtonName=questdlg('I want to get informations regarding RIN2MAT (Import of RINEX Files) ...', ...
                         'GPSLab Info: RIN2MAT (RINEX -> MatLab)', ...
                         'brief','detailed','RINEX Format','cancel');
   
     switch ButtonName,
     case 'brief', 
        
gpsjpg=imread('sat.jpg','JPEG');
hmsg=msgbox(['Conversion of RINEX Files to MatLab Files: ' ...
'After "Start Rinex Import" in the File Menu you can select the Rinex files (OBS and NAV) for the ' ...
'Reference and Rover station. The title line of the file browser shows you the ' ...
'type of file (regarding the kind of station). More specific informations ' ...
'you can find parallelly selecting "detailed". ' ...
'If you get problems regarding the import of your RINEX files please look into the LOG files ' ...
'and read the description of the RINEX2 format in parallel to this information selecting "RINEX Format".'], ...
'GPSLab Info: RINEX Import (RIN2MAT.M)','custom',gpsjpg,summer(64));
clear gpsjpg;

       case 'detailed',
          edit inputtip.txt
       case 'RINEX Format',
          edit rinex2.txt
       case 'cancel',
            errordlg(['cancelling the Info selection.' ...
            ' back to the program ...'], ...   
   			'GPSLab: Cancel');
         return;
          
       end % switch
     
% -----------------------------------------------------------------------------
% (c) iapg 1998-2002 zeb
% -----------------------------------------------------------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?