User manual

Series 3700 System Switch/Multimeter Reference Manual Section 13: Instrument Control Library (ICL)
3700S-901-01 Rev. C / July 2008 13-125
dmm.close()
Also see
channel.exclusiveslotclose() (on page 13-43)
channel.getclose() (on page 13-46)
channel.getstate() (on page 13-56)
dmm.open() (on page 13-154)
Example
To close Channel 3 on Slot 3 and prepare the DMM for measuring temperature at
'mytemperature' settings:
dmm.setconfig('3003', 'mytemperature')
dmm.close('3003')
To close a channel pattern called mychans and prepare DMM for measuring
'dcvolts' at factory default settings:
dmm.setconfig('mychans', 'dcvolts')
dmm.close('mychans')
dmm.configure.catalog()
Function
Creates an iterator for the user-created DMM configurations.
Usage
for name in dmm.configure.catalog() do … end
Remarks
Accessing the catalog for user DMM configurations allows the user to print or delete all
configurations in volatile memory. The entries will be enumerated in no particular
order. This will only list user-created DMM configurations; it does not list the factory
default configurations.
Also see
dmm.configure.delete() (on page 13-125)
dmm.configure.query() (on page 13-126)
dmm.configure.recall() (on page 13-128)
dmm.configure.set() (on page 13-129)
Example
To delete all user-created DMM configurations from volatile memory:
for name in dmm.configure.catalog() do
dmm.configure.delete(name)
end
To print all user-created DMM configurations in volatile memory:
for name in dmm.configure.catalog() do
print(name)
end
dmm.configure.delete()
Function
Deletes the specified user created DMM configuration from memory.
Usage
dmm.configure.delete(name)
name: String containing the name of the DMM configuration to delete