Produced by IDL 7.1.1
User Documentation

./guide
multiply.pro

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

multiply

procedure multiply[, in1][, in2][, out]

This procedure multiplies the data from two data containers stored in the global buffers 0-15.

If no parameters are passed, then the data from buffers 0 and 1 are multiplied and the result is stored in buffer 0. If two parameters are supplied, the data from the first buffer number is multiplied by the data from the second buffer number and the result of the is stored in buffer 0. If three parameters are supplied, the result is stored in the third (output) buffer number.

out = in1 * in2

Examples
    getrec,1
    copy,0,1
    getrec,2
    multiply

    getrec,1
    copy,0,10
    getrec,2
    copy,0,11
    multiply,10,11,12   ; The data from buffers 10 and 11 are multiplied
                        ; and the result is stored in buffer 12
 
Uses
dcadd dcpaircheck

Parameters
in1
in, optional
integer
First input data buffer number
in2
in, optional
integer
Second input data buffer number #2
out
in, optional
integer
Output data buffer number.


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