Produced by IDL 7.1.1
User Documentation

./guide
addstack.pro

Last modification date:
Wed Sep 28 13:27:08 2016

addstack

procedure addstack, first[, last][, step]

Add entries to "the stack", which is a list of numbers that can be used in batch operations. The list is stored in the variable !g.astack. The new entries are appended on to the existing list. Use astack to get values from the stack.

Examples
add numbers 25, 30 through 39, and the odd indexes from 41 through 51 to the stack.
    addstack, 25
    addstack, 30, 39
    addstack, 41, 51, 2
 
Uses
appendstack
Version
$Id$

Parameters
first
in, required
integer
The first value to be added to the stack.
last
in, optional
integer
The last value to be added to the stack. If this is omitted, only a single entry equal to first will be appended.
step
in, optional
integer
The increment between values. If omitted, a step of 1 will be used.


Produced by IDLdoc 1.6 on Wed Sep 28 13:27:33 2016