Fonction Scilab
eng - fr


return_dir_cos - retourne le chemin d'un fichier scicos présents dans la liste diagr_all

Librairie

Séquence d'appel

txt = return_dir_cos(name,diagr_all)

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


//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

Fonction(s) utilisée(s)

Add here the used function name and references

Auteurs

enter here the author name Add here the author references