Documentation of figure_landscape


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


Function Synopsis

figure_landscape(num);

Help text

  figure_landscape(fig_num);

  Opens a figure in the 'landscape' orientation.


Listing of function figure_landscape

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

orient landscape 
set(gcf,'Position',[0+10*(num-1) 472-10*(num-1) 650 475])

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