フィルターのクリア

Building a Command line interface for MATLAB standalone application

18 ビュー (過去 30 日間)
Digitalsd
Digitalsd 2012 年 9 月 30 日
I have an application written in MATLAB which needs to import some external data. I want to compile the program in order to build a standalone EXE file and I need a simple way to export some file names paths and some numbers to the application. I am thinking about some thing like command window or command line interface (NOT GUI). Do some body have any suggestions. Regards.

採用された回答

Matt J
Matt J 2012 年 9 月 30 日
Arguments can always be passed to a standalone from the command line. They will be interpreted as string arguments to the underlying mfile code. For example,
myEXE A B C
is equivalent to
myMFile('A','B','C'); %The source code for myEXE
  5 件のコメント
Matt J
Matt J 2012 年 10 月 2 日
編集済み: Matt J 2012 年 10 月 2 日
And you want to do this without commands like UIGETFILE,INPUTDLG, MSGBOX, etc...?
Digitalsd
Digitalsd 2012 年 10 月 2 日
Useful comment, Best Regards

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDeploy to C++ Applications Using mwArray API (C++03) についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by