MATLAB Compilerで作成したEXEファイルから、MATLABスクリプト(.mファイル)で定義されるコマンドを読み込む方法はありますか?
Mostrar comentarios más antiguos
ユーザによって編集されるMATLABスクリプトによって定義される変数をEXEファイルから読み込む方法を探しています。
例えば、ユーザが[DataSetting.m]で定義したデータセットを[PlotData.exe]でプロットしたい場合、どのような方法があるでしょうか。
[DataSetting.m] : ユーザが編集可能
dataset=[1 2 3];
[PlotData.exe] : データをプロットする実行ファイル
%DataSetting.mで定義される変数を読み込む
%?
%プロット
plot(dataset);
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB Compiler en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
