programatically exporting the code behind an .mlapp to an m file.
83 views (last 30 days)
Show older comments
Christopher Ward
on 7 Dec 2020
Commented: Xingwang Yong
on 9 Jan 2024
Appdesigner offers a way to export the underlying code out of the binary .mlapp to a .m file with a save as type dialog. This being the only way around storing in git for source control purposes. I want to be able to keep all these export for all the apps housed in a project in a seperate folder, to prevent clutter of the project. While I can maually hit the "export" menuitem , I then have to change the path and repeat indiviually.
Does anyone know if the method behind the menu item is exposed to the matalb command line so that a script could be used to semi automate?
chris
0 Comments
Accepted Answer
Mario Malic
on 7 Dec 2020
Hey Chris,
If you set up your application as a project, and use MATLAB's Source Control to share your project to Git, you are able to inspect the differences within MATLAB, which probably is the correct way to do what you want to do.
Optional info below:
If you unzip the file, under 'matlab' folder, there's a file called 'document.xml' which contains the script you see in App Designer, however, you can only use it to see the changes, but you cannot reuse the file, as it is not yet known to us how to change data inside and have a working application.
2 Comments
Steven Lord
on 7 Dec 2020
This documentation page includes instructions on how to configure your SCM to use tools provided by MathWorks to diff and merge our binary file formats.
More Answers (1)
Duijnhouwer
on 21 Mar 2023
You could add this to your MLAPP's startupFnc
writelines(evalc('type(mfilename(''fullpath'')+".mlapp")'),mfilename('fullpath')+".txt");
Each time you run the app, this will export the code as text for easy tracking with GIT.
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!