warning | The routines DELSTRUCT, DELCOM, DELPROC, and DELFUNC are provided as convenience routines for PV-WAVE developers. They allow developers to delete or reset certain elements of PV-WAVE's internal memory, which would otherwise require a restart of the PV-WAVE session. They are only used at the $MAIN$ level, i.e., at the WAVE> prompt. Any other use results in session instability and undefined results. |
d = DIST(10)
r = REVERSE(INDGEN(10))
PRINT, 'Functions loaded in memory:'
INFO, /Functions
; PV-WAVE output includes DIST and REVERSE.
; Delete compiled functions DIST and REVERSE from memory.
DELFUNC, 'DIST', 'REVERSE'
; List the functions in memory again.
PRINT, 'Function list after call to DELFUNC:'
INFO, /Functions