tt = def_MODNUM_path
Add here a paragraph of the function description. Other paragraph can be added
Add here a paragraph of the function description
Add here scilab instructions and comments
//def_MODNUM_path() //Entrée : néant //Sortie : tt chemin de MODNUM (ex:/home/mod_num_3) function tt=def_MODNUM_path() tt=get_absolute_file_path('builder.sce'); end_char=part(tt,length(tt)); if end_char=='/'|end_char=='\' then tt=part(tt,1:length(tt)-1); end endfunction