retrieve version inside AppDesigner appplication (.mlapp file)
16 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Does anyone know how to retrieve (programmatically) the version inside an .mlapp file?
This property is available on top level of the GUI, in picture below it is 1.02. I'd like to display it in a text label in the app.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1704621/image.png)
0 Kommentare
Antworten (1)
Image Analyst
am 27 Mai 2024
Bearbeitet: Image Analyst
am 27 Mai 2024
Did you try
s = ver('MATLAB');
releaseYear = s.Release(2:end-1);
releaseVersion = s.Version;
fprintf('You are using MATLAB Release %s, version number %s.\n', releaseYear, releaseVersion);
app.yourTextBox.Value = releaseVersion;
5 Kommentare
Image Analyst
am 28 Mai 2024
Bearbeitet: Image Analyst
am 28 Mai 2024
You or others might find the attached utility useful. It reads an XML file into a structure, which is more familiar, convenient, and easy to use for most of us.
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!