MATLAB standalone program data source

1 次查看(过去 30 天)
I have built a MATLAB standalone program. The original MATLAB program is supposed to import data from an excel file named P2.xlsx. After converting it to Standalone, if in change values in P2.xlsx, the output does not change.
How can I make it work?

回答(1 个)

Walter Roberson
Walter Roberson 2019-8-11
I suspect that you had a file by that name when you built the executable, and that the file got bundled with the executable and is the one being used.
You should read about ctfroot()
Executables do not generally look in the current directory for files. Well, they do, but they look in ctfroot first, and the current directory is seldom where you expect. Standalone executables operate as graphics programs opened by Windows, and so there is no way for them to pick up the user's current directory because there is a different current directory for every graphics program.
  3 个评论
Walter Roberson
Walter Roberson 2019-8-11
https://www.mathworks.com/help/compiler/ctfroot.html
Walter Roberson
Walter Roberson 2019-8-11
Generally you should proceed one of a few ways:
  1. uigetfile to interact with the user to select the file. Flexible but not always as convenient
  2. uigetfile but then use setpref to record the location so that next time you can retrieve it. I am not sure if the preferences would be cleared if the expanded ctf is removed
  3. use windows environment variables to locate the user's home directory or application directory and store the files there. Beware that not all users have their home directory on C:, especially in a networked environment.
  4. hardcode the path to the file. This gets risky as different environments use different directory structures.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Search Path 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by