How to convert a GUI which contains Instrument Control Toolbox codes to an exe file
8 views (last 30 days)
Show older comments
There is a GUI which use Instrument Control Toolbox language to control a power supplier.It also need to link to a .mdd instrument driver file. The codes are such as: handles.interfaceObj = instrfind('Type', 'visa-usb', 'RsrcName',... 'USB0::2391::2055::n8734a-us13c3218b::0::INSTR', 'Tag', ''); if isempty(handles.interfaceObj) handles.interfaceObj = visa('AGILENT',... 'USB0::2391::2055::n8734a-us13c3218b::0::INSTR'); else fclose(handles.interfaceObj); handles.interfaceObj = handles.interfaceObj(1); end handles.deviceObj = icdevice('agilent_N8700.mdd', handles.interfaceObj); connect(handles.deviceObj); The question is : 1) How can I convert this GUI file to an exe file?! 2) And Can the generated exe file also be possible to be run in the condition which is not installed MATLAB. Thanks a lot :)
0 Comments
Answers (1)
See Also
Categories
Find more on Instrument Control Toolbox Supported Hardware in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!