obj = findInstrument('STR') returns an interface object to an instrument whose model name, vendor name or VISA resource matches any part of the string STR.
findInstrument requires the Instrument Control Toolbox™ and a VISA adaptor, and currently only works with USB and GPIB instruments.
--------------
EXAMPLES
(See the published MATLAB file for sample outputs)
% see a list of all the available instruments
findInstrument;
% find an instrument by model number
obj = findInstrument('34405');
fopen(obj)
query(obj,'*IDN?')
fclose(obj)
% find an instrument by model number, using Agilent VISA
obj = findInstrument('34405', 'agilent');
% find an instrument by model number and
% create a device object
obj = findInstrument('33120');
fgen = icdevice('agilent_33120a.mdd', obj);
% find an instrument by matching a manufacturer name
obj = findInstrument('tek');
% find an instrument by the model code in the VISA resource
obj = findInstrument('0x0618')
Gautam Vallabha (2019). findInstrument - Find and connect to instruments using the model or manufacturer name (https://www.mathworks.com/matlabcentral/fileexchange/25593-findinstrument-find-and-connect-to-instruments-using-the-model-or-manufacturer-name), MATLAB Central File Exchange. Retrieved .
1.0.0.1 | Updated license |
Create scripts with code, output, and formatted text in a single executable document.
Frederick Weston (view profile)
Great tool, but does not work for me.
Pawel Kocwa (view profile)
KiungChung Wong (view profile)
Helpful example for me to use the Instrument Control Toolbox.
By the way, is "%#ok<CTCH>" just purely a comment in the try catch block or it actually means something ?
Also, when there is an error thrown, should the function returns instead of continuing ?
Joerg (view profile)
If you add a dot to the regexpi line "(?<resource>[A-Z0-9:.]+)" it is also recognising TCPIP VISA resources. (constructor=visa('ni', 'TCPIP0::192.168.1.1::inst0::INSTR');