Fonction Scilab
eng - fr


del_all_graphics - ferme toutes les fenêtres graphiques

Librairie

Séquence d'appel

del_all_graphics

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


//Fonction qui ferme toutes les fenetres
//graphiques ouvertes (old_style)
function del_all_graphics()
while %t
  win=xget("window");
  if win==0 then 
    xdel(win);
    win=xget("window");
    if win==0 then 
      xdel(win);
      break 
    end
  else
  xdel(win)
  end
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