Fonction Scilab
eng - fr


dessin_scs_m - exporte une figure à partir d'une liste scs_m dans un fichier eps

Librairie

Séquence d'appel

dessin_scs_m(scs_m,name,flag)

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


//dessin_scs_m
//fonction qui dessine le contenu graphique 
//d'une structure scs_m dans un fichier .eps
//
//Entrée scs_m : structure de données scicos
//       name : nom du fichier produit
//       flag : 'html' ou 'guide'
function dessin_scs_m(scs_m,name,flag)
  //load scicos variable and library
  bak=get('figure_style');
  set("figure_style","old");
  olds=get('old_style');
  set('old_style','on');

  //load scicos variable and library
  load SCI/macros/scicos/lib
  exec(loadpallibs,-1)
  %scicos_prob=%f;
  alreadyran=%f
  needcompile=4
  %zoom=1.8;
  colmap=xget('colormap');
   
  mdo_export(scs_m,name,flag)
   
  //restore figure_style  
  gg=xget('window')  // for bug in figure_style and winsid
  xset('window',0) // for bug in figure_style and winsid
  set('figure_style',bak);
  set('old_style',stripblanks(olds));
  xset('window',gg) // for bug in figure_style and winsid  
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