Changeset 18


Ignore:
Timestamp:
08/18/09 17:38:27 (15 years ago)
Author:
pinsard
Message:

tp_mlp_aerosl_startup : syntax improvements (header and code)

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/adm/makefile

    r7 r18  
    7171 
    7272LIST_SRCMATLAB = \ 
     73$(DIRSRC)/toolbox/$(PRODUCT)_startup.m \ 
    7374$(DIRSRC)/private/make_base_image.m \ 
    74 $(DIRSRC)/toolbox/$(PRODUCT)_startup.m 
     75$(DIRSRC)/private/make_image_sw.m \ 
     76$(DIRSRC)/private/make_lut.m \ 
     77$(DIRSRC)/private/intersect_octave.m \ 
     78$(DIRSRC)/private/script_correc.m 
    7579 
    7680LIST_SRCMATLAB_RST = \ 
  • trunk/toolbox/tp_mlp_aerosols_startup.m

    r15 r18  
    1414% 
    1515% Set up help Character Encoding. 
     16% cf http://www.mathworks.com/access/helpdesk/help/toolbox/simulink/index.html?/access/helpdesk/help/toolbox/simulink/slref/slcharacterencoding.html&http://www.google.fr/search?q=slCharacterEncoding&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a 
    1617% 
    1718% This file can be either run classicaly when currect directory 
    1819% is ${TP_MLP_AEROSOLS} : 
     20% 
    1921% .. 
    2022% 
     
    5759% not yet done because of specific meaning of private and toolbox in matlab 
    5860% 
     61% check if set_param(0,'CharacterEncoding','ISO-8859-1') is a better solution 
     62% than slCharacterEncoding('ISO-8859-1') 
     63% 
    5964%- 
    6065% 
     
    6267% 
    6368% detect if either octave or matlab running 
    64 if ~ exist('OCTAVE_VERSION') 
     69if ~ exist('OCTAVE_VERSION','builtin') 
    6570 run_octave=0; 
    6671else 
     
    7075if (run_octave == 0) 
    7176 % to display help written in ISO-LATIN 
    72  set_param(0,'CharacterEncoding','ISO-8859-1') 
    73 else 
    7477 slCharacterEncoding('ISO-8859-1'); 
    7578end 
Note: See TracChangeset for help on using the changeset viewer.