Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1488 |
|
Package | dish | |
Module | dish | |
Tool | dish |
scans | scan numbers to add to accumulator | ||
Allowed: | integer or vector of integers | ||
Default: | globalscan1 |
d.sclear() # clear the accumulator d.getc(35) # retrieve calibrated scan 35 d.accum() # add the scan to the accumulator d.getc(36) # retrieve calibrated scan 36 d.accum() # add the scan to the accumulator d.ave() # average scans in the accumulator d.show() # display the result on the plotter Equivalently: d.sclear() # clear the accumulator d.accum([35,36]) # add the scans to the accumulator d.ave() # average scans in the accumulator d.show() # display the result on the plotter