[ttn,ttp] = return_cos_name_cos(name)
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
//return_cos_name_cos //fonction qui retourne le titre et le //chemin d'un diagramme scicos inscrit dans une liste scs //Entrée name : chemin+nom du fichier cos // ex : name=MODNUM+'/scs_diagr/dyna/chua/chua.cos' //sortie tt : le nom du fichier cos function [ttn,ttp]=return_cos_name_cos(name) if fileinfo(name)<>[] then //charge le ficier cos load(name); ttn=scs_m.props("title")(1) ttp=scs_m.props("title")(2) else printf("Unable to find cos file"); end endfunction