Fonction Scilab
fr


def_MODNUM_path

Contenu du fichier


//def_MODNUM_path()
//Entrée : néant
//Sortie : tt chemin de MODNUM (ex:/home/modnum_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