Fonction Scilab
eng - fr


return_cos_name_cos - retourne le titre et le chemin inscrit dans un fichier diagramme scicos

Librairie

Séquence d'appel

[ttn,ttp] = return_cos_name_cos(name)

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


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

Fonction(s) utilisée(s)

Add here the used function name and references

Auteurs

enter here the author name Add here the author references