Changeset 32


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

detection of OS; explicit xy, explicit marker size

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/PROGRAMMES/carte_SST.m

    r29 r32  
    254254clear print_printer; 
    255255clear fullfilename; 
    256  
    257  
    258  
  • trunk/PROGRAMMES/reg_seriestemporelles.m

    r29 r32  
    6565% 
    6666% $Id$ 
     67% 
     68% - fplod 2009-09-14T14:10:07Z aedon.locean-ipsl.upmc.fr (Darwin) 
     69% 
     70%   * explicit MarkerSize value to avoid difference between  
     71%     octave 3.0.2 and octave 3.2.2 plots 
     72%   * explicit X and Y limits to avoid difference between 
     73%     matlab, octave 3.0.2 and octave 3.2.2 plots 
    6774% 
    6875% - fplod 2009-08-26T09:49:43Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    178185ifigure=1; 
    179186figure(ifigure); 
    180 plot(SST,PC,'x') 
     187plot(SST,PC,'x','markersize', 6) 
     188xlim([21 28]); 
     189ylim([-1.5 1.5]); 
    181190hold on 
    182191 
  • 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% 
  • trunk/RESULTATS/regandsignif_seriestemporelles.m

    r29 r32  
    6565% $Id$ 
    6666% 
     67% - fplod 2009-09-14T14:10:07Z aedon.locean-ipsl.upmc.fr (Darwin) 
     68% 
     69%   * explicit MarkerSize value to avoid difference between  
     70%     octave 3.0.2 and octave 3.2.2 plots 
     71%   * explicit X and Y limits to avoid difference between 
     72%     matlab, octave 3.0.2 and octave 3.2.2 plots 
    6773%  
    6874% - fplod 2009-08-26T11:00:35Z aedon.locean-ipsl.upmc.fr (Darwin) 
     
    180186ifigure=1; 
    181187figure(ifigure);  
    182 plot(SST,PC,'x') 
     188plot(SST,PC,'x','markersize', 6) 
     189xlim([24 26]); 
     190ylim([-3 3]); 
    183191hold on 
    184192 
  • trunk/adm/guides/makefile

    r15 r32  
    124124        @-mkdir -p ${DIRWWW}/html/images/ 
    125125        @-mkdir -p ${DIRWWW}/html/en/one/ 
     126        @-mkdir -p ${DIRWWW}/html/fr/one/ 
    126127        @-mkdir -p ${DIRWWW}/html/en/many/ 
     128        @-mkdir -p ${DIRWWW}/html/fr/many/ 
    127129        @-mkdir -p ${DIRWWW}/pdf/en/one/ 
     130        @-mkdir -p ${DIRWWW}/pdf/fr/one/ 
    128131        @-cp -p $(DIRSRC)/*.css ${DIRWWW}/html/css/ 
    129132        @-cp $(DIRSRC)/*.gif $(DIRWWW)/html/images/ 
     
    189192html_one : \ 
    190193$(DIRWWW)/html/en/one/index.html \ 
    191 $(DIRWWW)/html/en/one/enonce.html 
     194$(DIRWWW)/html/fr/one/enonce.html 
    192195 
    193196html_many : \ 
     
    197200pdf : \ 
    198201$(DIRWWW)/pdf/en/one/$(PRODUCT).pdf \ 
    199 $(DIRWWW)/pdf/en/one/enonce.pdf 
     202$(DIRWWW)/pdf/fr/one/enonce.pdf 
    200203 
    201204tracwiki : \ 
     
    234237        $< 
    235238 
    236 $(DIRWWW)/html/en/one/enonce.html : \ 
     239$(DIRWWW)/html/fr/one/enonce.html : \ 
    237240$(DIRTMP)/enonce_full.xml \ 
    238241$(DIRSRC)/html.xsl \ 
     
    321324        2> $(DIRTMP)/main_dblatex.err 
    322325 
    323 $(DIRWWW)/pdf/en/one/enonce.pdf : \ 
     326$(DIRWWW)/pdf/fr/one/enonce.pdf : \ 
    324327$(DIRTMP)/enonce_full.xml 
    325328        @-dblatex \ 
  • trunk/adm/guides/tpacpandreg.css

    r3 r32  
    88$Id$ 
    99 
    10 fplod 2009-08-13T08:15:21Z aedon.locean-ipsl.upmc.fr (Darwin) 
    11 creation empty 
     10- fplod 2009-08-13T08:15:21Z aedon.locean-ipsl.upmc.fr (Darwin) 
     11 
     12  * creation empty 
     13 
    1214*/ 
    1315 
Note: See TracChangeset for help on using the changeset viewer.