Interface with Matlab Stadalone Application
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
I've written and compiled a standalone executable application using Matlab Compiler. Currently, upon initiation of the program, the program reads an Excel file for the needed input data, performs the necessary calculations, and displays the corresponding results in the Matlab GUI. Everything seems to be working fine.
What I'm after now is a way for a user to pass in the variables necessary to perform the calculations without having to use an Excel input. That is, is there a way to have another program or some type of text-based input file pass a set of variables into my standalone Matlab program? I guess I'm thinking something along the lines of an API passing data into my Matlab application...
Thanks in advance for any advice.
~Cliff
댓글 수: 0
채택된 답변
Image Analyst
2013년 4월 14일
You can pass arguments in on the command line, if you want to do it that way. Or else you can ask the user to specify the file, via a button or menu that calls uigetfile() in its callback function.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!