- Move all the necessary files into the current working directory. You can create subfolders within this directory to maintain organization.
- Or change the working directory to a higher-level directory that encompasses all the relevant files. This ensures that the paths are more concise and manageable within the deployable archive.
Why does App Designer include the full file path when packaging external helper functions?
1 次查看(过去 30 天)
显示 更早的评论
I am trying to create a GUI for some existing code I wrote using the MATLAB App Designer. The app relies on some external helper functions that I wrote in MATLAB program files and they are correctly identified as necessary to include; however, when packaged it includes the entire file path of the matlab function files within the installed package. This means that after installing the app, for example, tallySum.m ends up stored in "/Users/rhysg/Library/Application Support/MathWorks/MATLAB Add-Ons/Apps/NNB_GUI/Users/rhysg/Documents/YPGRA/TIRF_ProcessingCode/tallySum.m" instead of just placing it in "/Users/rhysg/Library/Application Support/MathWorks/MATLAB Add-Ons/Apps/NNB_GUI/tallySum.m"
This doesn't cause functional problems but it does not seem intended and I was wondering if it could be avoided. Other than copying all the functions directly into the app is there a way to fix this? Is there a reason it functions in this way? Is there somewhere else to look for information on this?
Thanks in advance.
0 个评论
采纳的回答
Kanishk
2024-9-30
Hey Rhys,
I understand the helper function files in the installed package contain the entire path of the MATLAB function files. In the official MATLAB documentation, it is mentioned that
“When you include files that are in a folder other than the current MATLAB working folder, the partial file path is preserved in the deployable archive relative to ctfroot.”
Here, "ctfroot" refers to the folder where the deployable archive for the application is expanded.
To streamline the file paths within your installed package, you can either
Please go through this official MATLAB documentation to learn more.
Thanks
Hope this helps
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!