Documentation of figure_tall


Global Index (short | long) | Local contents | Local Index (short | long)


Function Synopsis

figure_tall(num);

Help text

  figure_tall(fig_num);

  Opens a figure in the 'tall' orientation


Listing of function figure_tall

function figure_tall(num);
  
if nargin == 0;
  num = gcf;
else
  figure(num); num = gcf;
end

orient tall
set(gcf,'Position',[0+10*(num-1) 225-10*(num-1) 560 722])

set( gcf, 'Renderer', 'painters' );