txt = return_dir_cos(name,diagr_all)
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
//Focntion qui retourne le répertoire d'un //fichier de simulation en regardant dans la //liste diagr_all function txt=return_dir_cos(name,diagr_all) txt=[]; for i=1:size(name,1) for j=1:size(diagr_all,1) if name(i,1)==diagr_all(j,2) then txt=[txt;diagr_all(j,1)] end end end endfunction