Scilab Function
eng - fr


del_all_graphics - close all scilab figure

Library

Calling Sequence

del_all_graphics

File content


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

Authors

IRCOM Group Alan Layec