Function File: figure_show(ifig)
: figure_show(ifig, toolkit)

Make hidden figures, identified by ifig, visible and optional set the graphics toolkit

ifig … Array of figure handles

toolkit … String name of graphics toolkit to be selected for ifig

See also: figure_hide, figure_list, figure_set_visible.

Demonstration 1

The following code

 hfig = [];
 for i=1:3
  hfig(end + 1) = figure("visible", "off");
 endfor
 figure_show(hfig, "gnuplot");
 for i=1:numel(hfig)
   close(hfig(i));
 endfor

gives an example of how 'figure_show' is used.

Package: mboct-octave-pkg