Documentation of pop_hold


Global Index (all files) (short | long) | Local Index (files in subdir) (short | long)


Function Synopsis

pop_hold ( arg1 ) ;

Help text

 function pop_hold ( arg1 ) ;

Cross-Reference Information

This function is called by

Listing of function pop_hold

function pop_hold ( arg1 ) ;

  global HOLD_STACK

  if exist('arg1');
    if strcmp(lower(arg1),'all');
      HOLD_STACK = []; hold off;
    else
      error('POP_HOLD: invalid argument');
    end
  else
    holded = HOLD_STACK(1);
    if holded; hold on; else; hold off; end
    HOLD_STACK = HOLD_STACK(2:length(HOLD_STACK));
  end