How to convert a GUI which contains Instrument Control Toolbox codes to an exe file
이전 댓글 표시
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 :)
답변 (1개)
Vinod
2013년 9월 4일
0 개 추천
카테고리
도움말 센터 및 File Exchange에서 Instrument Control Toolbox Supported Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!