Getting Started | Documentation | Glish | Learn More | Programming | Contact Us |
Version 1.9 Build 1488 |
|
Package | bima | |
Module | bimams | |
Tool | bimams |
type | The spectral window type | ||
Allowed: | String: 'A' (all types), 'a' (multi-channel average), 'c' (multi-channel data), or 's' (sideband average) | ||
sb | The sideband. Not used if type='s' | ||
Allowed: | String: 'b' (both), 'l' (lsb), 'u' (usb) | ||
Default: | 'b' |
# construct a bimams tool and assign it to a Glish variable named bms bms := bimams('neptune.ms'); # get the a list of ids of all the multi-channel data windows in both # sidebands bms.spwids(type='c', sb='b'); # The previous command returns a vector of integers representing the # ids of all the multi-channel data windows, e.g., [4 6 8 10 12 14 16 18 # 20 22 24 26]. # get the ids for the multi-channel data windows from the upper # sideband only bms.spwids(type='c', sb='u'); # the previous command returns [16 18 20 22 24 26]