Produced by IDL 7.1.1
User Documentation

./guide
copy.pro

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

copy

procedure copy, in, out

Copy the data from the in buffer to the out buffer. Anything in out is lost.

This uses the value of !g.line. If it is set (1) then the array of line data (!g.s) is used, otherwise the array of continuum data (!g.c) is used. The contents of the in buffer remain unchanged by this operation.

There are 16 buffers total, numbered from 0 through 15.

Examples
Copy the contents of buffer 0 to buffer 10. Then copy the contents of 9 to buffer 0.
    copy, 0, 10
    copy, 9, 0
 
Uses
set_data_container
Version
$Id$

Parameters
in
in, required
integer
The buffer to copy values from.
out
in, required
integer
The buffer to copy the values to.


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