Produced by IDL 7.1.1
User Documentation

./guide
add.pro

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

add

procedure add[, in1][, in2][, out]

This procedure adds the data from two data containers stored in the global buffers 0-15. If no parameters are passed, then the data from global buffers 0 and 1 are added and the result is stored in global buffer 0. If two parameters are supplied, those two global buffers are added together and the result of the addition is stored in global buffer 0. If three parameters are supplied, then the first two are global buffers that are added together and the third is the global buffer where the result should be stored.

out = in1 + in2

Examples
    getrec,1
    copy,0,1
    getrec,2
    add            ; The two records are added and the result is
                   ; stored in buffer 0

    getrec,1
    copy,0,10
    getrec,2
    copy,0,11
    add,10,11,12   ; The data from buffers 10 and 11 are added and 
                   ; the result is stored in buffer 12
 
Uses
dcadd dcpaircheck
Version
$Id$

Parameters
in1
in, optional
integer
Input buffer number, first argument.
in2
in, optional
integer
Input buffer number, second argument.
out
in, optional
integer
Output buffer number.


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