Fonction Scilab
eng - fr


return_path_cos_file - retourne le répertoire d'un fichier .cos spécifié dans une liste tt_ml

Librairie

Séquence d'appel

path = return_path_cos_file(name,tt_ml)

Paramètres

Description

Add here a paragraph of the function description. Other paragraph can be added

Add here a paragraph of the function description

Exemple

Add here scilab instructions and comments

Contenu du fichier


function path=return_path_cos_file(name,tt_ml)
tt=return_cos_file(tt_ml);
path=[];
for i=1:size(tt,1)
 c=strindex(tt(i,2),name+'.cos');
 if c<>[] then
  if c==1 then
   path=tt(i,1);
   break;
  end;
 end
end
endfunction 

Fonction(s) utilisée(s)

Add here the used function name and references

Auteurs

enter here the author name Add here the author references