Documentation of push_temp


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


Function Synopsis

push_temp ( var ) 

Help text

 function push_temp ( var ) 

 See also : push_stack

Listing of function push_temp

function push_temp ( var ) 

  global TEMP_STACK

  [m,n] = size(var);
  if isstr(var); var=abs(var); m=-m; n=-n; end
  TEMP_STACK = [ m n reshape(var,1,m*n) TEMP_STACK ];