tt = return_block_pal(name,libn,dbl)
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_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