Produced by IDL 7.1.1
User Documentation

./toolbox
dcdivide.pro

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

dcdivide

function dcdivide(dc1, dc2)

This procedure divides the first data container's data array by the second, returning the result.

Returns
float array - division of dc1 data array by dc2 data array
Examples
    get,index=1
    a = data_new()
    data_copy,!g.s[0],a
    show,a
    get, index=2
    b = data_new()
    data_copy,!g.s[0],b
    show,b
    div = dcdivide(a,b)
    plot,div
 
Uses
dcpaircheck
Version
$Id$

Parameters
dc1
in, required
data container
data container (spectrum or continuum)
dc2
in, required
data container
data container (spectrum or continuum)


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