Fonction Scilab
eng - fr


return_block_pal - retourne la liste des noms des blocs présents dans un fichier cosf

Librairie

Séquence d'appel

tt = return_block_pal(name,libn,dbl)

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_block_pal
//Entrée name : chemin+nom de la palette
//              ex : name=MODNUM+'/macros/scicos_blocks/Tools.cosf'
//       nlib : un identifiant de libraire (ex 'mod_num')
//sortie tt : La liste des blocks
function tt=return_block_pal(name,libn,dbl)
  if fileinfo(name)<>[] then  
   
   //load scicos library
   load SCI/macros/scicos/lib

   exec(name,-1)
   tt=return_block_name(scs_m,libn,dbl)
   
  else
   printf("Unable to find cosf 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