Retrieve an attribute from matlab to app designer
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hello !
I have a matlab script with some attributes and an App designer script.
I would like to know if it is possible to use or to retrieve an attribute of the matlab script with the appdesigner script.
My goal is to compare an attribute's value with 0 and launch the script or not ?
Thanks for helping !
0 Kommentare
Antworten (1)
Stephane Dauvillier
am 9 Mai 2019
There is several ways to do what you want to do. It will depend on your MATLAB knwoledge.
To answer you first question. You can access a property of any object (not only an app) if this property is a Public one (you can access Private property only in the method of that class).
I don't know your app so if several cause can set your proeprties to 0, I suggest you use events (advance MATLAB behavior but very powerfull).
If ther eis only one location in your app where this property is set to 0 then just call your script in your app after verifying the attribute is equal to 0
2 Kommentare
Stephane Dauvillier
am 9 Mai 2019
I don't know what parsingXML() is.
If your first answer works, use it
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!