User manual
Section 13: Instrument Control Library (ICL) Series 3700 System Switch/Multimeter Reference Manual
13-116 3700S-901-01 Rev. C / July 2008
dmm.buffer.catalog()
Also see
dmm.buffer.info (on page 13-116)
Example
To print all user-created local reading buffers in the system:
for name in dmm.buffer.catalog() do
print(name)
end
dmm.buffer.info()
Function
Returns the size and capacity of the reading buffer parameter.
Usage
size, capacity = dmm.buffer.info(buffer_name)
buffer_name: String representing the reading buffer name to query for size and
capacity
size: Number representing the n attribute of reading buffer parameter
capacity: Number representing the capacity attribute of reading buffer parameter
Remarks
This function uses the specified reading buffer input parameter name to find the
corresponding size and capacity to return. Use this function with the
dmm.buffer.catalog() function to output the size and capacity for all reading buffers in
the system.
Also see
dmm.buffer.catalog() (on page 13-115)