Ignore:
Timestamp:
09/14/09 16:46:30 (15 years ago)
Author:
pinsard
Message:

detection of OS; explicit xy, explicit marker size

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/PROGRAMMES/tpacpandreg_startup.m

    r26 r32  
    3838% $Id$ 
    3939% 
     40% - fplod 2009-09-11T14:42:49Z aedon.locean-ipsl.upmc.fr (Darwin) 
     41% 
     42%   * la commande slCharacterEncoding('ISO-8859-1') n'est pas supporté 
     43%     sous Matlab/Windows : ajout de détection du systÚme pour supprimer cet 
     44%     appel 
     45% 
    4046% - fplod 2009-08-25T10:36:26Z aedon.locean-ipsl.upmc.fr (Darwin) 
    4147% 
     
    6874% 
    6975if (run_octave == 0) 
    70  % to display help written in ISO-LATIN 
    71  slCharacterEncoding('ISO-8859-1'); 
     76 % detection of system architecture 
     77 computer_arch=computer('arch'); 
     78 switch computer_arch 
     79  case {'mac','glnx86','gnlxa64'} 
     80   % to correctly display help written in ISO-LATIN 
     81   slCharacterEncoding('ISO-8859-1'); 
     82  otherwise 
     83   % Nothing to do about encoding help written in ISO-LATIN on 
     84   % Windows 
     85   warning('www : you may have trouble to see help written in ISO-LATIN'); 
     86  end 
    7287end 
    7388% 
Note: See TracChangeset for help on using the changeset viewer.